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:
authorGhostkeeper <rubend@tutanota.com>2020-03-24 11:35:10 +0300
committerGhostkeeper <rubend@tutanota.com>2020-03-24 11:35:10 +0300
commit37673691fd0be0ceb5d17f148d7860ef6dba7578 (patch)
tree69b0ccbd3f49d994981ab70defdf3c58d45a9083 /resources
parentc6fde82ec1487b529445015643d2083b1ad57789 (diff)
Clarify tooltip about resolution between per-extruder values
It was using a bit of programmer jargon there that was very hard to understand. Initially I was coming in here to remove the space at the end of the translated string but I'm now changing all of it to make it more clear to the user as well. Done as a 5 minute fix.
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/Settings/SettingItem.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/Settings/SettingItem.qml b/resources/qml/Settings/SettingItem.qml
index 9986c7eaf8..4f232cd7ee 100644
--- a/resources/qml/Settings/SettingItem.qml
+++ b/resources/qml/Settings/SettingItem.qml
@@ -188,7 +188,7 @@ Item
if ((resolve !== "None") && (stackLevel !== 0))
{
// We come here if a setting has a resolve and the setting is not manually edited.
- tooltipText += " " + catalog.i18nc("@label", "The value is resolved from per-extruder values ") + "[" + Cura.ExtruderManager.getInstanceExtruderValues(definition.key) + "]."
+ tooltipText += " " + catalog.i18nc("@label", "This setting is resolved from conflicting extruder-specific values:") + " [" + Cura.ExtruderManager.getInstanceExtruderValues(definition.key) + "]."
}
base.showTooltip(tooltipText)
}