From e3236bec4deda9d1450e8604c9f4250d2ed7f34b Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 11 May 2017 11:22:02 +0200 Subject: [PATCH] Make wording more consistent Contributes to issue CURA-3732. --- resources/qml/SidebarSimple.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/qml/SidebarSimple.qml b/resources/qml/SidebarSimple.qml index eb58344013..3eaf0797e8 100644 --- a/resources/qml/SidebarSimple.qml +++ b/resources/qml/SidebarSimple.qml @@ -192,7 +192,7 @@ Item percentageMax: 0, stepsMin: -1, stepsMax: 0, - text: catalog.i18nc("@label", "Empty infill will leave your model hollow with low strength"), + text: catalog.i18nc("@label", "Empty infill will leave your model hollow with low strength."), icon: "hollow" }) infillModel.append({ @@ -203,7 +203,7 @@ Item percentageMax: 30, stepsMin: -1, stepsMax: 0, - text: catalog.i18nc("@label", "Light (20%) infill will give your model an average strength"), + text: catalog.i18nc("@label", "Light (20%) infill will give your model an average strength."), icon: "sparse" }) infillModel.append({ @@ -214,7 +214,7 @@ Item percentageMax: 70, stepsMin: -1, stepsMax: 0, - text: catalog.i18nc("@label", "Dense (50%) infill will give your model an above average strength"), + text: catalog.i18nc("@label", "Dense (50%) infill will give your model an above average strength."), icon: "dense" }) infillModel.append({ @@ -225,7 +225,7 @@ Item percentageMax: 9999999999, stepsMin: -1, stepsMax: 0, - text: catalog.i18nc("@label", "Solid (100%) infill will make your model completely solid"), + text: catalog.i18nc("@label", "Solid (100%) infill will make your model completely solid."), icon: "solid" }) infillModel.append({ @@ -237,7 +237,7 @@ Item stepsMin: 0, stepsMax: 9999999999, infill_layer_height: 1.5, - text: catalog.i18nc("@label", "This will gradually increase the amount of infill towards the top"), + text: catalog.i18nc("@label", "Gradual infill will gradually increase the amount of infill towards the top."), icon: "gradual" }) }