Skip to content

Commit d344dea

Browse files
committed
gmoccapy: make a dialog message translatable
1 parent 21ad34e commit d344dea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/emc/usr_intf/gmoccapy/gmoccapy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3988,7 +3988,7 @@ def on_ntb_info_switch_page(self, widget, page, page_num, data=None):
39883988
def on_btn_back_clicked(self, widget, data=None):
39893989
if self.widgets.ntb_button.get_current_page() == _BB_EDIT: # edit mode, go back to auto_buttons
39903990
if self.file_changed:
3991-
message = "Do you want to exit without saving the changes?"
3991+
message = _("Exit and discard changes?")
39923992
result = self.dialogs.yesno_dialog(self, message, _("Attention!!"))
39933993
if not result: # user says no, he want to save
39943994
return

0 commit comments

Comments
 (0)