From: mfloryan Date: Wed, 11 Jun 2008 12:31:05 +0000 (+0000) Subject: Fixed some strings that upset gettext. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=10c5ff1d9f9e4df5f79931a8375d3445431063c7;p=inkscape.git Fixed some strings that upset gettext. --- diff --git a/share/extensions/export_gimp_palette.py b/share/extensions/export_gimp_palette.py index 1248a56bb..51b9a950d 100644 --- a/share/extensions/export_gimp_palette.py +++ b/share/extensions/export_gimp_palette.py @@ -11,7 +11,7 @@ import sys, simplestyle try: from xml.dom.minidom import parse except: - sys.exit(_('The export_gpl.py module requires PyXML. Please download the latest version from .')) + sys.exit(_('The export_gpl.py module requires PyXML. Please download the latest version from http://pyxml.sourceforge.net/.')) colortags=(u'fill',u'stroke',u'stop-color',u'flood-color',u'lighting-color') colors={} diff --git a/share/extensions/inkex.py b/share/extensions/inkex.py index b4872368e..c190fdde0 100755 --- a/share/extensions/inkex.py +++ b/share/extensions/inkex.py @@ -58,7 +58,7 @@ def unittouu(string): try: from lxml import etree except: - sys.exit(_('The fantastic lxml wrapper for libxml2 is required by inkex.py and therefore this extension. Please download and install the latest version from , or install it through your package manager by a command like: sudo apt-get install python-lxml')) + sys.exit(_('The fantastic lxml wrapper for libxml2 is required by inkex.py and therefore this extension. Please download and install the latest version from http://cheeseshop.python.org/pypi/lxml/, or install it through your package manager by a command like: sudo apt-get install python-lxml')) def debug(what): sys.stderr.write(str(what) + "\n") diff --git a/share/extensions/pathmodifier.py b/share/extensions/pathmodifier.py index e30ec5197..128c1b754 100644 --- a/share/extensions/pathmodifier.py +++ b/share/extensions/pathmodifier.py @@ -226,7 +226,7 @@ class PathModifier(inkex.Effect): newNode = self.unlinkClone(node,doReplace) return self.objectToPath(newNode,doReplace) else: - inkex.errormsg(_("Please first convert objects to paths! (Got <%s>.)") % node.tag) + inkex.errormsg(_("Please first convert objects to paths! (Got [%s].)") % node.tag) return None def objectsToPaths(self,aList,doReplace=True):