- fixed a small bug

This commit is contained in:
Marius Stanciu 2019-09-14 02:31:44 +03:00 committed by Marius
parent 5985c15842
commit fc6ae08011
2 changed files with 3 additions and 2 deletions

View File

@ -89,8 +89,8 @@ def on_language_apply_click(app, restart=False):
if restart:
msgbox = QtWidgets.QMessageBox()
msgbox.setText(_("The application will restart."))
msgbox.setInformativeText('$s %s?' % _("Are you sure do you want to change the current language to"),
name.capitalize())
msgbox.setInformativeText('%s %s?' %
(_("Are you sure do you want to change the current language to"), name.capitalize()))
msgbox.setWindowTitle(_("Apply Language ..."))
msgbox.setWindowIcon(QtGui.QIcon('share/language32.png'))
bt_yes = msgbox.addButton(_("Yes"), QtWidgets.QMessageBox.YesRole)

View File

@ -13,6 +13,7 @@ CAD program, and create G-Code for Isolation routing.
- more string changes
- updated translation files
- fixed a small bug
13.09.2019