From da7a5b7a43725dad9d7de276bf208154e5dfd78a Mon Sep 17 00:00:00 2001 From: Nicolas Dufour Date: Tue, 30 Aug 2011 22:14:06 +0200 Subject: i18n. Fix for bug #745285 (bad English translations in inkscape). (bzr r10601) --- share/extensions/webslicer_export.py | 4 ++-- 1 file 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] -- cgit v1.2.3