diff options
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/isodumper.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/isodumper.py b/lib/isodumper.py index 836b247..0323c12 100755 --- a/lib/isodumper.py +++ b/lib/isodumper.py @@ -597,7 +597,7 @@ NTFS or ext. You can specify a volume name and the format in a new dialog box.<B dlg = mgafactory.createDialogBox(yui.YMGAMessageBox.B_ONE) dlg.setTitle(info.title) dlg.setText(info.text, info.richtext) - dlg.setButtonLabel("OK", yui.YMGAMessageBox.B_ONE) + dlg.setButtonLabel(_("OK"), yui.YMGAMessageBox.B_ONE) dlg.setMinSize(60, 10); return dlg.show() == yui.YMGAMessageBox.B_ONE @@ -607,8 +607,8 @@ NTFS or ext. You can specify a volume name and the format in a new dialog box.<B dlg = mgafactory.createDialogBox(yui.YMGAMessageBox.B_TWO) dlg.setTitle(info.title) dlg.setText(info.text, info.richtext) - dlg.setButtonLabel("Yes", yui.YMGAMessageBox.B_ONE) - dlg.setButtonLabel("No", yui.YMGAMessageBox.B_TWO) + dlg.setButtonLabel(_("Yes"), yui.YMGAMessageBox.B_ONE) + dlg.setButtonLabel(_("No"), yui.YMGAMessageBox.B_TWO) dlg.setMinSize(60, 8); return dlg.show() == yui.YMGAMessageBox.B_ONE @@ -616,7 +616,7 @@ NTFS or ext. You can specify a volume name and the format in a new dialog box.<B yui.YUI.widgetFactory; mgafactory = yui.YMGAWidgetFactory.getYMGAWidgetFactory(yui.YExternalWidgets.externalWidgetFactory("mga")) dlg = mgafactory.createAboutDialog("Isodumper", self.RELEASE, "GPLv2", - "Oliver Grawert<BR />Papoteur<BR />Pictures : Timothée Giet", _("A tool for writing ISO images to a device")+"<BR />http://gitweb.mageia.org/software/isodumper", "") + _("Oliver Grawert<BR />Papoteur<BR />Pictures : Timothée Giet"), _("A tool for writing ISO images to a device")+"<BR />http://gitweb.mageia.org/software/isodumper", "") dlg.show(); def nodevDialog(self): |