summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2011-07-09 09:05:34 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2011-07-09 09:05:34 +0000
commit84c9624fa21cbe41661d76e56ef538936c35490d (patch)
treef5d049b2fb4d92c9c827f1c61b48a25ff72a063e /share
parentauto-maximize the inkscape extension error dialog so that it is easier to rea... (diff)
downloadinkscape-84c9624fa21cbe41661d76e56ef538936c35490d.tar.gz
inkscape-84c9624fa21cbe41661d76e56ef538936c35490d.zip
String fixes in webslicer
Fixed bugs: - https://launchpad.net/bugs/807861 (bzr r10428)
Diffstat (limited to 'share')
-rw-r--r--share/extensions/webslicer_create_group.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/extensions/webslicer_create_group.py b/share/extensions/webslicer_create_group.py
index c2de0594b..613162850 100644
--- a/share/extensions/webslicer_create_group.py
+++ b/share/extensions/webslicer_create_group.py
@@ -55,7 +55,7 @@ class WebSlicer_CreateGroup(WebSlicer_Effect):
def get_base_elements(self):
self.layer = self.get_slicer_layer()
if is_empty(self.layer):
- inkex.errormsg(_('You must to create and select some "Slicer rectangles" before try to group.'))
+ inkex.errormsg(_('You must create and select some "Slicer rectangles" before trying to group.'))
exit(3)
self.layer_descendants = self.get_descendants_in_array(self.layer)
@@ -74,7 +74,7 @@ class WebSlicer_CreateGroup(WebSlicer_Effect):
exit(1)
for id,node in self.selected.iteritems():
if node not in self.layer_descendants:
- inkex.errormsg(_('Opss... The element "%s" is not in the Web Slicer layer') % id)
+ inkex.errormsg(_('Oops... The element "%s" is not in the Web Slicer layer') % id)
exit(2)
g_parent = self.getParentNode(node)
group = inkex.etree.SubElement(g_parent, 'g')