summaryrefslogtreecommitdiffstats
path: root/iw/confirm_gui.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-07-12 02:01:36 +0000
committerMike Fulbright <msf@redhat.com>2002-07-12 02:01:36 +0000
commit0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e (patch)
treee8e7bceba0cc8e07e8ce98bb5c2bdbbcd4888267 /iw/confirm_gui.py
parent3fa09b6811591026daa27fd67bdc75494558ce25 (diff)
downloadanaconda-0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e.tar.gz
anaconda-0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e.tar.xz
anaconda-0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e.zip
Changes as per Milan Documentation String Review
Diffstat (limited to 'iw/confirm_gui.py')
-rw-r--r--iw/confirm_gui.py17
1 files changed, 7 insertions, 10 deletions
diff --git a/iw/confirm_gui.py b/iw/confirm_gui.py
index f536e4116..9016aee63 100644
--- a/iw/confirm_gui.py
+++ b/iw/confirm_gui.py
@@ -58,12 +58,11 @@ class InstallConfirmWindow (ConfirmWindow):
def getScreen(self):
return ConfirmWindow.getScreen(self,
_("Click next to begin installation of %s.") % (productName,),
- _("A complete log of your installation will be in "
- "%s after rebooting your system. You "
- "may want to keep this file for later reference. "
- "A kickstart file representing the choices you have made "
- "will be in %s.") % ("/root/install.log",
- "/root/anaconda-ks.cfg"))
+ _("A complete log of the installation can be found in "
+ "the %s file after rebooting your system.\n\n"
+ "A kickstart file containing the installation options "
+ "selected can be found in the %s file after rebooting the "
+ "system") % ("/root/install.log", "/root/anaconda-ks.cfg"))
class UpgradeConfirmWindow (ConfirmWindow):
windowTitle = N_("About to Upgrade")
@@ -72,8 +71,6 @@ class UpgradeConfirmWindow (ConfirmWindow):
def getScreen(self):
return ConfirmWindow.getScreen(self,
_("Click next to begin upgrade of %s.") % (productName,),
- _("A complete log of your upgrade will be in "
- "after rebooting your system. You "
- "may want to keep this file for later "
- "reference.") % ("/root/upgrade.log",))
+ _("A complete log of the upgrade can be found in "
+ "the %s file after rebooting your system.") % ("/root/upgrade.log",))