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>2016-12-16 19:08:57 +0300
committerGhostkeeper <rubend@tutanota.com>2016-12-16 19:08:57 +0300
commit33c79245acf25ebf8c2e2dfab4766a97cefc73e0 (patch)
treeb146039f9f6e2b4bbb7103dda43ec1b01ce95c0d /resources
parent263b0847147c259eba9cb3eb73a1bfa3b2bfa31a (diff)
Fix plural form for number of overrides
Contributes to issue CURA-1263.
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/WorkspaceSummaryDialog.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/WorkspaceSummaryDialog.qml b/resources/qml/WorkspaceSummaryDialog.qml
index 55a6b41315..1afc6c0f1e 100644
--- a/resources/qml/WorkspaceSummaryDialog.qml
+++ b/resources/qml/WorkspaceSummaryDialog.qml
@@ -186,7 +186,7 @@ UM.Dialog
}
Label
{
- text: catalog.i18nc("@action:label", "%1 override(s)").arg(Cura.MachineManager.numUserSettings)
+ text: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", Cura.MachineManager.numUserSettings).arg(Cura.MachineManager.numUserSettings)
width: parent.width / 3
}
visible: Cura.MachineManager.numUserSettings