summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlvin Penner <penner@vaxxine.com>2009-08-14 01:53:54 +0000
committeralvinpenner <alvinpenner@users.sourceforge.net>2009-08-14 01:53:54 +0000
commit9e04dfa9ede550c29f2e0f7716f332e22561d9b0 (patch)
tree04a83527fbc4836025d015c4f4f852a935204a7e
parentfix 407893 (diff)
downloadinkscape-9e04dfa9ede550c29f2e0f7716f332e22561d9b0.tar.gz
inkscape-9e04dfa9ede550c29f2e0f7716f332e22561d9b0.zip
fixing typos, replace | with ->
(bzr r8485)
-rwxr-xr-xshare/extensions/perspective.py8
-rwxr-xr-xshare/extensions/summersnight.py8
2 files changed, 8 insertions, 8 deletions
diff --git a/share/extensions/perspective.py b/share/extensions/perspective.py
index 1c5fb9e3a..ae47cacfb 100755
--- a/share/extensions/perspective.py
+++ b/share/extensions/perspective.py
@@ -65,7 +65,7 @@ class Project(inkex.Effect):
obj = self.selected[self.options.ids[0]]
envelope = self.selected[self.options.ids[1]]
if obj.get(inkex.addNS('type','sodipodi')):
- inkex.errormsg(_("The first selected object is of type '%s'.\nTry using the procedure Path | Object to Path." % obj.get(inkex.addNS('type','sodipodi'))))
+ inkex.errormsg(_("The first selected object is of type '%s'.\nTry using the procedure Path->Object to Path." % obj.get(inkex.addNS('type','sodipodi'))))
exit()
if obj.tag == inkex.addNS('path','svg') or obj.tag == inkex.addNS('g','svg'):
if envelope.tag == inkex.addNS('path','svg'):
@@ -96,12 +96,12 @@ class Project(inkex.Effect):
sp = array([[q['x'], q['y']+q['height']],[q['x'], q['y']],[q['x']+q['width'], q['y']],[q['x']+q['width'], q['y']+q['height']]], dtype=float64)
else:
if envelope.tag == inkex.addNS('g','svg'):
- inkex.errormsg(_("The second selected object is a group, not a path.\nTry using the procedure Object | Ungroup."))
+ inkex.errormsg(_("The second selected object is a group, not a path.\nTry using the procedure Object->Ungroup."))
else:
- inkex.errormsg(_("The second selected object is not a path.\nTry using the procedure Path | Object to Path."))
+ inkex.errormsg(_("The second selected object is not a path.\nTry using the procedure Path->Object to Path."))
exit()
else:
- inkex.errormsg(_("The first selected object is not a path.\nTry using the procedure Path | Object to Path."))
+ inkex.errormsg(_("The first selected object is not a path.\nTry using the procedure Path->Object to Path."))
exit()
solmatrix = zeros((8,8), dtype=float64)
diff --git a/share/extensions/summersnight.py b/share/extensions/summersnight.py
index 86b51d227..7c76d7162 100755
--- a/share/extensions/summersnight.py
+++ b/share/extensions/summersnight.py
@@ -42,7 +42,7 @@ class Project(inkex.Effect):
obj = self.selected[self.options.ids[0]]
trafo = self.selected[self.options.ids[1]]
if obj.get(inkex.addNS('type','sodipodi')):
- inkex.errormsg(_("The first selected object is of type '%s'.\nTry using the procedure Path | Object to Path." % obj.get(inkex.addNS('type','sodipodi'))))
+ inkex.errormsg(_("The first selected object is of type '%s'.\nTry using the procedure Path->Object to Path." % obj.get(inkex.addNS('type','sodipodi'))))
exit()
if obj.tag == inkex.addNS('path','svg') or obj.tag == inkex.addNS('g','svg'):
if trafo.tag == inkex.addNS('path','svg'):
@@ -81,12 +81,12 @@ class Project(inkex.Effect):
self.process_group(obj)
else:
if trafo.tag == inkex.addNS('g','svg'):
- inkex.errormsg(_("The second selected object is a group, not a path.\nTry using the procedure Object | Ungroup."))
+ inkex.errormsg(_("The second selected object is a group, not a path.\nTry using the procedure Object->Ungroup."))
else:
- inkex.errormsg(_("The second selected object is not a path.\nTry using the procedure Path | Object to Path."))
+ inkex.errormsg(_("The second selected object is not a path.\nTry using the procedure Path->Object to Path."))
exit()
else:
- inkex.errormsg(_("The first selected object is not a path.\nTry using the procedure Path | Object to Path."))
+ inkex.errormsg(_("The first selected object is not a path.\nTry using the procedure Path->Object to Path."))
exit()
def process_group(self,group):