From 3c545ba7c906fd5c5b5668bb0bc9f28e5aa991ad Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 18 Jul 2017 12:53:46 +0200 Subject: [PATCH] Clarify context of print info bounding box size translation Lots of translators did this wrong. Contributes to issue CURA-3998. --- cura/CuraApplication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 211c98782e..ab209e83cf 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -806,7 +806,7 @@ class CuraApplication(QtApplication): @pyqtProperty(str, notify = sceneBoundingBoxChanged) def getSceneBoundingBoxString(self): - return self._i18n_catalog.i18nc("@info", "%(width).1f x %(depth).1f x %(height).1f mm") % {'width' : self._scene_bounding_box.width.item(), 'depth': self._scene_bounding_box.depth.item(), 'height' : self._scene_bounding_box.height.item()} + return self._i18n_catalog.i18nc("@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm.", "%(width).1f x %(depth).1f x %(height).1f mm") % {'width' : self._scene_bounding_box.width.item(), 'depth': self._scene_bounding_box.depth.item(), 'height' : self._scene_bounding_box.height.item()} def updatePlatformActivity(self, node = None): count = 0