summaryrefslogtreecommitdiffstats
path: root/textw
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 /textw
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 'textw')
-rw-r--r--textw/confirm_text.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/textw/confirm_text.py b/textw/confirm_text.py
index a657b68b2..6e667abf8 100644
--- a/textw/confirm_text.py
+++ b/textw/confirm_text.py
@@ -19,8 +19,8 @@ class BeginInstallWindow:
def __call__ (self, screen):
rc = ButtonChoiceWindow (screen, _("Installation to begin"),
_("A complete log of your installation will be in "
- "/root/install.log after rebooting your system. You "
- "may want to keep this file for later reference."),
+ "%s after rebooting your system. You "
+ "may want to keep this file for later reference.") %("/root/install.log",),
buttons = [ _("OK"), _("Back") ],
help = "begininstall")
if rc == string.lower (_("Back")):
@@ -31,8 +31,8 @@ class BeginUpgradeWindow:
def __call__ (self, screen) :
rc = ButtonChoiceWindow (screen, _("Upgrade to begin"),
_("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."),
+ "%s after rebooting your system. You "
+ "may want to keep this file for later reference." %("/root/upgrade.log",)),
buttons = [ _("OK"), _("Back") ],
help = "beginupgrade")
if rc == string.lower (_("Back")):