summaryrefslogtreecommitdiffstats
path: root/iw/congrats_gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-04-24 15:46:31 +0000
committerJeremy Katz <katzj@redhat.com>2003-04-24 15:46:31 +0000
commit0a562126d84c59a113231ae7ab38984f92d62153 (patch)
tree5e87b9094f4ebdc328979e3a0640dee5f1fc40cb /iw/congrats_gui.py
parentdd200d781bd9012f562399c2ee69c23fe60d86b9 (diff)
downloadanaconda-0a562126d84c59a113231ae7ab38984f92d62153.tar.gz
anaconda-0a562126d84c59a113231ae7ab38984f92d62153.tar.xz
anaconda-0a562126d84c59a113231ae7ab38984f92d62153.zip
another taroon merge. tagged before as before-taroon-merge, after as
after-taroon-merge this one adds s390 fixes, basic i/p series platform support, support for multiple kernels and one second stage, cmdline kickstart mode (nice for s390), some warning cleanups.
Diffstat (limited to 'iw/congrats_gui.py')
-rw-r--r--iw/congrats_gui.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/iw/congrats_gui.py b/iw/congrats_gui.py
index 319a98b55..a77c7853a 100644
--- a/iw/congrats_gui.py
+++ b/iw/congrats_gui.py
@@ -56,13 +56,19 @@ class CongratulationWindow (InstallWindow):
"rebooting your newly installed system.\n\n") % (productName,)
else:
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."
+ "\n\n")
label = gui.WrappingLabel(
_("Congratulations, the installation is complete.\n\n"
- "Remove any installation media (diskettes or CD-ROMs) used during the "
- "installation."
- "\n\n"
+ "%s"
"%s"
"For information on Errata (updates and bug fixes), visit:\n"
"\thttp://www.redhat.com/errata/\n\n"
@@ -74,7 +80,7 @@ class CongratulationWindow (InstallWindow):
"\thttp://www.redhat.com/apps/support/\n\n"
"To register the product for support, visit:\n"
"\thttp://www.redhat.com/apps/activate/\n\n"
- "Click 'Exit' to reboot the system.") % (bootstr,))
+ "Click 'Exit' to reboot the system.") % (floppystr, bootstr,))
hbox.pack_start (label, gtk.TRUE, gtk.TRUE)
return hbox