diff options
author | Mike Fulbright <msf@redhat.com> | 2003-07-31 18:54:20 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2003-07-31 18:54:20 +0000 |
commit | 293f8b4b31911a76cef4bd741ac491991435d8bd (patch) | |
tree | b925a18049995aa7cdd377b25f1b15043eaa35ae /iw | |
parent | 6af314f0fa0214908264d0fb95286c64e4d0f982 (diff) | |
download | anaconda-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.py | 8 |
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',)) |