diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-10-14 21:39:04 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-10-14 21:39:04 +0000 |
commit | 06b4a47e342535b005a05dba9629e858e23404b4 (patch) | |
tree | 7f494933bace8dc6ea4510d5e1cfa5662a1be22d /iw/congrats_gui.py | |
parent | 781d4b340208f3271e7223f4bfca7631ba3afee5 (diff) | |
download | anaconda-06b4a47e342535b005a05dba9629e858e23404b4.tar.gz anaconda-06b4a47e342535b005a05dba9629e858e23404b4.tar.xz anaconda-06b4a47e342535b005a05dba9629e858e23404b4.zip |
minor cleanups (#106369)
Diffstat (limited to 'iw/congrats_gui.py')
-rw-r--r-- | iw/congrats_gui.py | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/iw/congrats_gui.py b/iw/congrats_gui.py index b80edc256..52cd07e1b 100644 --- a/iw/congrats_gui.py +++ b/iw/congrats_gui.py @@ -26,7 +26,7 @@ class CongratulationWindow (InstallWindow): InstallWindow.__init__(self, ics) ics.setPrevEnabled(gtk.FALSE) - ics.setNextButton(gtk.STOCK_QUIT, _("_Exit")) + ics.setNextButton(gtk.STOCK_QUIT, _("_Reboot")) ics.setHelpButtonEnabled(gtk.FALSE) ics.setHelpEnabled(gtk.FALSE) ics.setGrabNext(1) @@ -49,20 +49,14 @@ class CongratulationWindow (InstallWindow): a.set_size_request(200, -1) hbox.pack_start (a, gtk.FALSE, gtk.FALSE, 36) - if iutil.getArch() == 'i386': - bootstr = _("If you created a boot diskette during this " - "installation as your primary means of " - "booting %s, insert it before " - "rebooting your newly installed system.\n\n") % (productName,) - else: - bootstr = "" - + bootstr = "" if iutil.getArch() == "s390": floppystr = "" else: floppystr = _("Remove any installation media (diskettes or " "CD-ROMs) used during the installation process " - "and press <Enter> to reboot your system." + "and press the \"Reboot\" button to reboot your " + "system." "\n\n") txt = _("Congratulations, the installation is complete.\n\n" |