summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2011-08-30 20:14:06 +0000
committerJazzyNico <nicoduf@yahoo.fr>2011-08-30 20:14:06 +0000
commitda7a5b7a43725dad9d7de276bf208154e5dfd78a (patch)
treeebfe43cdc01fcc2d9f22576e6fa6c352dc521241 /share
parentUpdate to Potrace 1.10 (diff)
downloadinkscape-da7a5b7a43725dad9d7de276bf208154e5dfd78a.tar.gz
inkscape-da7a5b7a43725dad9d7de276bf208154e5dfd78a.zip
i18n. Fix for bug #745285 (bad English translations in inkscape).
(bzr r10601)
Diffstat (limited to 'share')
-rwxr-xr-xshare/extensions/webslicer_export.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/extensions/webslicer_export.py b/share/extensions/webslicer_export.py
index 5b16ea2f5..c50cbcc32 100755
--- a/share/extensions/webslicer_export.py
+++ b/share/extensions/webslicer_export.py
@@ -54,8 +54,8 @@ class WebSlicer_Export(WebSlicer_Effect):
def validate_inputs(self):
# The user must supply a directory to export:
if is_empty( self.options.dir ):
- inkex.errormsg(_('You must to give a directory to export the slices.'))
- return {'error':'You must to give a directory to export the slices.'}
+ inkex.errormsg(_('You must give a directory to export the slices.'))
+ return {'error':'You must give a directory to export the slices.'}
# No directory separator at the path end:
if self.options.dir[-1] == '/' or self.options.dir[-1] == '\\':
self.options.dir = self.options.dir[0:-1]