summaryrefslogtreecommitdiffstats
path: root/textw/complete_text.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-07-06 01:40:59 +0000
committerMike Fulbright <msf@redhat.com>2001-07-06 01:40:59 +0000
commit21dc7cd04e8b7d523a122164714d056690747be1 (patch)
treec84b8548e78e2a020a3d635a3d43d5aefa18da32 /textw/complete_text.py
parente3b1f979d46a099db61ebfac04ac99bc5957b064 (diff)
downloadanaconda-21dc7cd04e8b7d523a122164714d056690747be1.tar.gz
anaconda-21dc7cd04e8b7d523a122164714d056690747be1.tar.xz
anaconda-21dc7cd04e8b7d523a122164714d056690747be1.zip
integrated changes suggested by docs
Diffstat (limited to 'textw/complete_text.py')
-rw-r--r--textw/complete_text.py38
1 files changed, 18 insertions, 20 deletions
diff --git a/textw/complete_text.py b/textw/complete_text.py
index 84526b38e..c4ea81c30 100644
--- a/textw/complete_text.py
+++ b/textw/complete_text.py
@@ -9,17 +9,18 @@ class FinishedWindow:
screen.pushHelpLine (_(" <Return> to reboot "))
rc = ButtonChoiceWindow (screen, _("Complete"),
- _("Congratulations, installation is complete.\n\n"
- "Press return to reboot, and be sure to remove your "
- "boot medium after the system reboots, or your system "
- "will rerun the install. For information on fixes which "
- "are available for this release of Red Hat Linux, "
- "consult the "
- "Errata available from http://www.redhat.com/errata.\n\n"
- "Information on configuring and using your Red Hat "
- "Linux system is contained in the Red Hat Linux "
- "manuals."),
- [ _("OK") ], help = "finished")
+ _("Congratulations, your Red Hat Linux installation is "
+ "complete.\n\n"
+ "Remove any CD-ROMs or floppy diskettes you used during the "
+ "installation process and press <Enter> to reboot your system. "
+ "\n\n"
+ "If you created a boot disk to use to boot your Red Hat Linux "
+ "system, insert it before you press <Enter> to reboot.\n\n"
+ "For information on errata (updates and bug fixes), visit "
+ "http://www.redhat.com/errata.\n\n"
+ "Information on using and configuring your "
+ "system is available in the Red Hat Linux manuals."),
+ [ _("OK") ], help = "finished", width=60)
return INSTALL_OK
@@ -30,14 +31,11 @@ class ReconfigFinishedWindow:
screen.pushHelpLine (_(" <Return> to exit "))
rc = ButtonChoiceWindow (screen, _("Complete"),
- _("Congratulations, configuration is complete.\n\n"
- " For information on fixes which "
- "are available for this release of Red Hat Linux, "
- "consult the "
- "Errata available from http://www.redhat.com.\n\n"
- "Information on further configuring your system is "
- "available at http://www.redhat.com/support/manuals/"),
-
- [ _("OK") ], help = "reconfigfinished")
+ _("Congratulations, configuration is complete.\n\n"
+ "For information on errata (updates and bug fixes), visit "
+ "http://www.redhat.com/errata.\n\n"
+ "Information on using and configuring your "
+ "system is available in the Red Hat Linux manuals."),
+ [ _("OK") ], help = "reconfigfinished")
return INSTALL_OK