Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2018-12-20 18:31:57 +0300
committerJaime van Kessel <nallath@gmail.com>2018-12-20 18:31:57 +0300
commit3f599bd06f817ad39aaeb9d50b6939760e5505ea (patch)
tree5c436550ffc33776c46fc385f0fcb62559cfb27b /resources/qml/ActionPanel/SliceProcessWidget.qml
parent3953c7bb3a4400f7e49fe3ee53052e317b341f62 (diff)
Ensure that the tooltip text is translated
CURA-6004
Diffstat (limited to 'resources/qml/ActionPanel/SliceProcessWidget.qml')
-rw-r--r--resources/qml/ActionPanel/SliceProcessWidget.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/ActionPanel/SliceProcessWidget.qml b/resources/qml/ActionPanel/SliceProcessWidget.qml
index ab5e224c90..79c0186443 100644
--- a/resources/qml/ActionPanel/SliceProcessWidget.qml
+++ b/resources/qml/ActionPanel/SliceProcessWidget.qml
@@ -109,7 +109,7 @@ Column
fixedWidthMode: true
anchors.fill: parent
text: catalog.i18nc("@button", "Slice")
- tooltip: "Start slicing process"
+ tooltip: catalog.i18nc("@label", "Start the slicing process")
enabled: widget.backendState != UM.Backend.Error
visible: widget.backendState == UM.Backend.NotStarted || widget.backendState == UM.Backend.Error
onClicked: sliceOrStopSlicing()