diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-07-16 03:23:20 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-07-16 03:23:20 +0000 |
commit | a51764f258d46a2e2f0ae39f25144c6ffabb8804 (patch) | |
tree | 18980a7ca91a86f6432dd19e172608ed7c12e8f1 /textw/complete_text.py | |
parent | 1b2f9fe18937b9f187b7fd77a50c2c7d0f369654 (diff) | |
download | anaconda-a51764f258d46a2e2f0ae39f25144c6ffabb8804.tar.gz anaconda-a51764f258d46a2e2f0ae39f25144c6ffabb8804.tar.xz anaconda-a51764f258d46a2e2f0ae39f25144c6ffabb8804.zip |
merge from taroon branch. product.img stuff, md can be modular, lots of
little things across the board
Diffstat (limited to 'textw/complete_text.py')
-rw-r--r-- | textw/complete_text.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/textw/complete_text.py b/textw/complete_text.py index f0ac5dc19..d9d245632 100644 --- a/textw/complete_text.py +++ b/textw/complete_text.py @@ -21,9 +21,6 @@ import iutil class FinishedWindow: def __call__ (self, screen): - screen.pushHelpLine (string.center(_("<Enter> to reboot"), - screen.width)) - if iutil.getArch() == "i386": bootstr = _("If you created a boot diskette during this " "installation as your primary means of " @@ -33,13 +30,17 @@ class FinishedWindow: bootstr = "" if iutil.getArch() == "s390": - floppystr = _("Press <Enter> to reboot your system.\n\n") + floppystr = _("Press <Enter> to end the installation process.\n\n") + bottomstr = _("<Enter> to exit") else: floppystr = _("Remove any installation media (diskettes or " "CD-ROMs) used during the installation process " "and press <Enter> to reboot your system." "\n\n") - + bottomstr = _("<Enter> to reboot") + + screen.pushHelpLine (string.center(bottomstr, screen.width)) + rc = ButtonChoiceWindow (screen, _("Complete"), _("Congratulations, your %s installation is " |