summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-01-13 06:11:33 +0000
committerJeremy Katz <katzj@redhat.com>2003-01-13 06:11:33 +0000
commit4a9ec0baa3343fce70914bfa9a125a31490e694b (patch)
treef483e50500e2dd86e623e761745533f78a44d276 /gui.py
parentc63fabbb1985a50e7cbf1e23dfeb1027c16d61eb (diff)
downloadanaconda-4a9ec0baa3343fce70914bfa9a125a31490e694b.tar.gz
anaconda-4a9ec0baa3343fce70914bfa9a125a31490e694b.tar.xz
anaconda-4a9ec0baa3343fce70914bfa9a125a31490e694b.zip
add support for the install time language to be different from the post-intsall
language as specified in the lang-table. this is needed for cjk locales because we want to use utf-8 for them during the install (we only have bterm support for utf-8), but we can't use utf-8 post-install yet because of lack of input method support and other such problems.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gui.py b/gui.py
index a7e50d41e..737fb3fb5 100755
--- a/gui.py
+++ b/gui.py
@@ -1427,6 +1427,8 @@ class InstallControlState:
break
if text:
+ text = text.replace("@RHL@", productName)
+ text = text.replace("@RHLVER@", productVersion)
return text
print "Unable to read %s help text" % (file,)