diff options
| author | Marcin Floryan <mfloryan@mm.waw.pl> | 2008-06-11 12:31:05 +0000 |
|---|---|---|
| committer | mfloryan <mfloryan@users.sourceforge.net> | 2008-06-11 12:31:05 +0000 |
| commit | 1c9a7e29cb53a782f1b5a8aa8f1874f5780b76b9 (patch) | |
| tree | e59ab8956497ae90d624a4ce9529df6e42540f17 | |
| parent | Remove any baseProfile attribute, as we don't respect it. (See bug 166958.) (diff) | |
| download | inkscape-1c9a7e29cb53a782f1b5a8aa8f1874f5780b76b9.tar.gz inkscape-1c9a7e29cb53a782f1b5a8aa8f1874f5780b76b9.zip | |
Fixed some strings that upset gettext.
(bzr r5880)
| -rw-r--r-- | share/extensions/export_gimp_palette.py | 2 | ||||
| -rwxr-xr-x | share/extensions/inkex.py | 2 | ||||
| -rw-r--r-- | share/extensions/pathmodifier.py | 2 |
3 files changed, 3 insertions, 3 deletions
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 <http://pyxml.sourceforge.net/>.')) + 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 <http://cheeseshop.python.org/pypi/lxml/>, 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): |
