summaryrefslogtreecommitdiffstats
path: root/share/extensions
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2010-10-10 07:20:25 +0000
committerJazzyNico <nicoduf@yahoo.fr>2010-10-10 07:20:25 +0000
commitfe34a8c6b939f6afcf0153b1655faa18e29cc923 (patch)
tree0078c7a7376379c547a547300784bc7563e7efb3 /share/extensions
parentExtensions, i18n. Adding context to description, groupheader and radiobutton ... (diff)
downloadinkscape-fe34a8c6b939f6afcf0153b1655faa18e29cc923.tar.gz
inkscape-fe34a8c6b939f6afcf0153b1655faa18e29cc923.zip
Translations. Adding no-pango-format flag to a string and check-markup fix for python files.
(bzr r9822)
Diffstat (limited to 'share/extensions')
-rw-r--r--share/extensions/gcodetools.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/share/extensions/gcodetools.py b/share/extensions/gcodetools.py
index cd8a43399..37e89b318 100644
--- a/share/extensions/gcodetools.py
+++ b/share/extensions/gcodetools.py
@@ -3408,7 +3408,8 @@ class Gcodetools(inkex.Effect):
elif i.tag == inkex.addNS("g",'svg'):
recursive_search(i,layer, (i.get("id") in self.selected) )
elif i.get("id") in self.selected :
- self.error(("This extension works with Paths and Dynamic Offsets and groups of them only! All other objects will be ignored!\nSolution 1: press Path->Object to path or Shift+Ctrl+C.\nSolution 2: Path->Dynamic offset or Ctrl+J.\nSolution 3: export all contours to PostScript level 2 (File->Save As->.ps) and File->Import this file."),"selection_contains_objects_that_are_not_paths")
+# xgettext:no-pango-format
+ self.error(_("This extension works with Paths and Dynamic Offsets and groups of them only! All other objects will be ignored!\nSolution 1: press Path->Object to path or Shift+Ctrl+C.\nSolution 2: Path->Dynamic offset or Ctrl+J.\nSolution 3: export all contours to PostScript level 2 (File->Save As->.ps) and File->Import this file."),"selection_contains_objects_that_are_not_paths")
recursive_search(self.document.getroot(),self.document.getroot())