From: alvinpenner Date: Fri, 14 Aug 2009 01:53:54 +0000 (+0000) Subject: fixing typos, replace | with -> X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8e20eef3b0047d54e0b0141b415cd5658ac8bcbf;p=inkscape.git fixing typos, replace | with -> --- 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):