summaryrefslogtreecommitdiffstats
path: root/iw/confirm_gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-07-11 04:30:51 +0000
committerJeremy Katz <katzj@redhat.com>2002-07-11 04:30:51 +0000
commit9961781b8c8cca7d6ba7f13b4542b86119d80e26 (patch)
tree54e1154531362f68d73221cbbe50c611c0d60c3e /iw/confirm_gui.py
parent65149730e02186c97c1e77b2dcfdb20384ac4d14 (diff)
downloadanaconda-9961781b8c8cca7d6ba7f13b4542b86119d80e26.tar.gz
anaconda-9961781b8c8cca7d6ba7f13b4542b86119d80e26.tar.xz
anaconda-9961781b8c8cca7d6ba7f13b4542b86119d80e26.zip
make filenames not be in the strings. now translators can't change them and we can change them without breaking translations (#68482)
Diffstat (limited to 'iw/confirm_gui.py')
-rw-r--r--iw/confirm_gui.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/iw/confirm_gui.py b/iw/confirm_gui.py
index 9abb49ab1..f536e4116 100644
--- a/iw/confirm_gui.py
+++ b/iw/confirm_gui.py
@@ -59,10 +59,11 @@ class InstallConfirmWindow (ConfirmWindow):
return ConfirmWindow.getScreen(self,
_("Click next to begin installation of %s.") % (productName,),
_("A complete log of your installation will be in "
- "/root/install.log after rebooting your system. You "
+ "%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 /root/anaconda-ks.cfg."))
+ "will be in %s.") % ("/root/install.log",
+ "/root/anaconda-ks.cfg"))
class UpgradeConfirmWindow (ConfirmWindow):
windowTitle = N_("About to Upgrade")
@@ -72,6 +73,7 @@ class UpgradeConfirmWindow (ConfirmWindow):
return ConfirmWindow.getScreen(self,
_("Click next to begin upgrade of %s.") % (productName,),
_("A complete log of your upgrade will be in "
- "/root/upgrade.log after rebooting your system. You "
- "may want to keep this file for later reference."))
+ "after rebooting your system. You "
+ "may want to keep this file for later "
+ "reference.") % ("/root/upgrade.log",))