From bfe97a1eca3905daef728e91a4ee89dae84a90af Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Thu, 11 Aug 2016 21:10:16 +0200 Subject: [PATCH] Using ~ only for the amount of material in grams --- resources/qml/JobSpecs.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/JobSpecs.qml b/resources/qml/JobSpecs.qml index 2221604ddc..78f184f13c 100644 --- a/resources/qml/JobSpecs.qml +++ b/resources/qml/JobSpecs.qml @@ -209,7 +209,7 @@ Rectangle { lengths = ["0.00"]; weights = ["0"]; } - return catalog.i18nc("@label", "≈ %1 m / %2 g").arg(lengths.join(" + ")).arg(weights.join(" + ")); + return catalog.i18nc("@label", "%1 m / ~ %2 g").arg(lengths.join(" + ")).arg(weights.join(" + ")); } } }