From 8e20eef3b0047d54e0b0141b415cd5658ac8bcbf Mon Sep 17 00:00:00 2001 From: alvinpenner Date: Fri, 14 Aug 2009 01:53:54 +0000 Subject: [PATCH] fixing typos, replace | with -> --- share/extensions/perspective.py | 8 ++++---- share/extensions/summersnight.py | 8 ++++---- 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): -- 2.30.2