summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-07-31 18:54:20 +0000
committerMike Fulbright <msf@redhat.com>2003-07-31 18:54:20 +0000
commit293f8b4b31911a76cef4bd741ac491991435d8bd (patch)
treeb925a18049995aa7cdd377b25f1b15043eaa35ae /iw
parent6af314f0fa0214908264d0fb95286c64e4d0f982 (diff)
downloadanaconda-293f8b4b31911a76cef4bd741ac491991435d8bd.tar.gz
anaconda-293f8b4b31911a76cef4bd741ac491991435d8bd.tar.xz
anaconda-293f8b4b31911a76cef4bd741ac491991435d8bd.zip
fix longstanding issue in confirm installation screen where paths to files wrapped really ugly. Bug #72584. Also I think this wording makes more sense.
Diffstat (limited to 'iw')
-rw-r--r--iw/confirm_gui.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/iw/confirm_gui.py b/iw/confirm_gui.py
index 67ed905b2..bddeddeb3 100644
--- a/iw/confirm_gui.py
+++ b/iw/confirm_gui.py
@@ -59,10 +59,10 @@ class InstallConfirmWindow (ConfirmWindow):
return ConfirmWindow.getScreen(self,
_("Click next to begin installation of %s.") % (productName,),
_("A complete log of the installation can be found in "
- "the %s file after rebooting your system.\n\n"
+ "the file '%s' 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"))
+ "selected can be found in the file '%s' after rebooting the "
+ "system.") % (u'\uFEFF/\uFEFFroot\uFEFF/\uFEFFinstall.log', u'\uFEFF/\uFEFFroot\uFEFF/\uFEFFanaconda\uFEFF-\uFEFFks\uFEFF.\uFEFFcfg'))
class UpgradeConfirmWindow (ConfirmWindow):
windowTitle = N_("About to Upgrade")
@@ -72,5 +72,5 @@ class UpgradeConfirmWindow (ConfirmWindow):
return ConfirmWindow.getScreen(self,
_("Click next to begin upgrade of %s.") % (productName,),
_("A complete log of the upgrade can be found in "
- "the %s file after rebooting your system.") % ("/root/upgrade.log",))
+ "the file '%s' after rebooting your system.") % (u'\uFEFF/\uFEFFroot\uFEFF/\uFEFFupgrade\uFEFF.\uFEFFlog',))