summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcin Floryan <mfloryan@mm.waw.pl>2008-06-11 12:31:05 +0000
committermfloryan <mfloryan@users.sourceforge.net>2008-06-11 12:31:05 +0000
commit1c9a7e29cb53a782f1b5a8aa8f1874f5780b76b9 (patch)
treee59ab8956497ae90d624a4ce9529df6e42540f17
parentRemove any baseProfile attribute, as we don't respect it. (See bug 166958.) (diff)
downloadinkscape-1c9a7e29cb53a782f1b5a8aa8f1874f5780b76b9.tar.gz
inkscape-1c9a7e29cb53a782f1b5a8aa8f1874f5780b76b9.zip
Fixed some strings that upset gettext.
(bzr r5880)
-rw-r--r--share/extensions/export_gimp_palette.py2
-rwxr-xr-xshare/extensions/inkex.py2
-rw-r--r--share/extensions/pathmodifier.py2
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):