- 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

@@ -6044,8 +6044,7 @@ class App(QtCore.QObject):
obj.mirror('X', [px, py])
obj.plot()
self.app_obj.object_changed.emit(obj)
self.inform.emit('[success] %s' %
_("Flip on Y axis done."))
self.inform.emit('[success] %s.' % _("Flip on Y axis done"))
except Exception as e:
self.app.inform.emit('[ERROR_NOTCL] %s: %s.' % (_("Action was not executed"), str(e)))
return
@@ -6091,8 +6090,7 @@ class App(QtCore.QObject):
obj.mirror('Y', [px, py])
obj.plot()
self.app_obj.object_changed.emit(obj)
self.inform.emit('[success] %s' %
_("Flip on X axis done."))
self.inform.emit('[success] %s.' % _("Flip on X axis done"))
except Exception as e:
self.app.inform.emit('[ERROR_NOTCL] %s: %s.' % (_("Action was not executed"), str(e)))
return