- updated all the translation files

This commit is contained in:
Marius Stanciu
2020-11-04 15:31:25 +02:00
committed by Marius Stanciu
parent 5ce594a349
commit e5569360a7
30 changed files with 650 additions and 1009 deletions

View File

@@ -206,8 +206,8 @@ class ToolMove(AppTool):
# delete the selection bounding box
self.delete_shape()
self.app.inform.emit('[success] %s %s' %
(str(sel_obj.kind).capitalize(), 'object was moved ...'))
self.app.inform.emit('[success] %s %s ...' %
(str(sel_obj.kind).capitalize(), _('object was moved')))
self.app.worker_task.emit({'fcn': job_move, 'params': [self]})
@@ -217,8 +217,7 @@ class ToolMove(AppTool):
except TypeError as e:
log.debug("ToolMove.on_left_click() --> %s" % str(e))
self.app.inform.emit('[ERROR_NOTCL] ToolMove.on_left_click() --> %s' %
_('Error when mouse left click.'))
self.app.inform.emit('[ERROR_NOTCL] ToolMove. %s' % _('Error when mouse left click.'))
return
self.clicked_move = 1