summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 70d2b1a)
raw | patch | inline | side by side (parent: 70d2b1a)
author | alvinpenner <alvinpenner@users.sourceforge.net> | |
Fri, 14 Aug 2009 01:53:54 +0000 (01:53 +0000) | ||
committer | alvinpenner <alvinpenner@users.sourceforge.net> | |
Fri, 14 Aug 2009 01:53:54 +0000 (01:53 +0000) |
share/extensions/perspective.py | patch | blob | history | |
share/extensions/summersnight.py | patch | blob | history |
index 1c5fb9e3ae3b7863ac2e17b3892d60cefebcab25..ae47cacfb07758215c1f390b4c7ea774e53ecd7a 100755 (executable)
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'):
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)
index 86b51d2274176727d947c0c1c911a7972d758be9..7c76d71626145d1e85ae85ae4693c3cd8c686787 100755 (executable)
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'):
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):