diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-09-23 19:12:07 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-09-23 19:12:07 +0000 |
commit | 2afa2bb2d037b06b3619dd2735869f453b9bd38d (patch) | |
tree | 54cd21267611c2b01138a44238a56e57b27fd2b7 /textw | |
parent | 33cd6888ad4fa058777cf8a141d413cd05c68e0d (diff) | |
download | anaconda-2afa2bb2d037b06b3619dd2735869f453b9bd38d.tar.gz anaconda-2afa2bb2d037b06b3619dd2735869f453b9bd38d.tar.xz anaconda-2afa2bb2d037b06b3619dd2735869f453b9bd38d.zip |
don't have activation information, etc
Diffstat (limited to 'textw')
-rw-r--r-- | textw/complete_text.py | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/textw/complete_text.py b/textw/complete_text.py index d9d245632..0aea9c122 100644 --- a/textw/complete_text.py +++ b/textw/complete_text.py @@ -41,18 +41,16 @@ class FinishedWindow: screen.pushHelpLine (string.center(bottomstr, screen.width)) - - rc = ButtonChoiceWindow (screen, _("Complete"), - _("Congratulations, your %s installation is " - "complete.\n\n" - "%s" - "%s" - "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, floppystr, bootstr, productName), + 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,) + + rc = ButtonChoiceWindow (screen, _("Complete"), txt, [ _("OK") ], help = "finished", width=60) return INSTALL_OK |