summaryrefslogtreecommitdiffstats
path: root/textw/complete_text.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2008-12-01 15:27:21 -0500
committerJeremy Katz <katzj@redhat.com>2008-12-01 16:25:59 -0500
commit8e454a4309f4296b266534703138688d81a0576d (patch)
treec41dae1ef185f5b5c953666affc124bab2038ed9 /textw/complete_text.py
parentaadef79bf0349cebad99e6157110ab4a754a4bdf (diff)
downloadanaconda-8e454a4309f4296b266534703138688d81a0576d.tar.gz
anaconda-8e454a4309f4296b266534703138688d81a0576d.tar.xz
anaconda-8e454a4309f4296b266534703138688d81a0576d.zip
Make complete text mention updates (#244431)
Mention that updates are available and sync up text for completion between text mode and GUI
Diffstat (limited to 'textw/complete_text.py')
-rw-r--r--textw/complete_text.py16
1 files changed, 6 insertions, 10 deletions
diff --git a/textw/complete_text.py b/textw/complete_text.py
index c6ab30a2d..9b1871fde 100644
--- a/textw/complete_text.py
+++ b/textw/complete_text.py
@@ -29,20 +29,16 @@ class FinishedWindow:
def __call__ (self, screen, anaconda):
bootstr = ""
- floppystr = _("Press <Enter> to end the installation process.\n\n")
bottomstr = _("<Enter> to exit")
screen.pushHelpLine (string.center(bottomstr, screen.width))
- txt = _("Congratulations, your %s installation is "
- "complete.\n\n"
- "%s%s") %(productName, floppystr, bootstr)
- foo = _("For information on errata (updates and bug fixes), visit "
- "http://www.redhat.com/errata/.\n\n"
- "Information on using your "
- "system is available in the %s manuals at "
- "http://www.redhat.com/docs/.") %(productName,)
-
+ txt = _("Congratulations, your %s installation is complete.\n\n"
+ "Please reboot the system to use the installed system. "
+ "Note that updates may be available to ensure the proper "
+ "functioning of your system and installation of these "
+ "updates is recommended after initially booting your "
+ "system.") %(productName,)
rc = ButtonChoiceWindow (screen, _("Complete"), txt,
[ _("Reboot") ], help = "finished", width=60)