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>2017-07-18 13:53:46 +0300
committerGhostkeeper <rubend@tutanota.com>2017-07-18 14:10:16 +0300
commit3c545ba7c906fd5c5b5668bb0bc9f28e5aa991ad (patch)
tree3ebe8f6bcde4ee03f1c652c0269a9796c3c9e786 /cura/CuraApplication.py
parentde8a700bd46fefeb587040e6a7209fa2e25b1f31 (diff)
Clarify context of print info bounding box size translation
Lots of translators did this wrong. Contributes to issue CURA-3998.
Diffstat (limited to 'cura/CuraApplication.py')
-rwxr-xr-xcura/CuraApplication.py2
1 files changed, 1 insertions, 1 deletions
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