summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorKarsten Hopp <karsten@redhat.de>2003-04-22 12:01:16 +0000
committerKarsten Hopp <karsten@redhat.de>2003-04-22 12:01:16 +0000
commitc7850c2d87e1e4909e68feeb68e6d85e6af3ca4b (patch)
tree23cb5b6356fce6ee7524e9f1ceaec95a88a8179a /iw
parent5d5d60ad60fb23f4c32398c2c42cf5f8cfb5eac7 (diff)
downloadanaconda-c7850c2d87e1e4909e68feeb68e6d85e6af3ca4b.tar.gz
anaconda-c7850c2d87e1e4909e68feeb68e6d85e6af3ca4b.tar.xz
anaconda-c7850c2d87e1e4909e68feeb68e6d85e6af3ca4b.zip
- fix #88630
- sync text mode / gui mode to reuse strings
Diffstat (limited to 'iw')
-rw-r--r--iw/congrats_gui.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/iw/congrats_gui.py b/iw/congrats_gui.py
index 319a98b55..490daf755 100644
--- a/iw/congrats_gui.py
+++ b/iw/congrats_gui.py
@@ -56,13 +56,18 @@ 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 +79,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