summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-04-19 06:28:35 +0000
committerJeremy Katz <katzj@redhat.com>2002-04-19 06:28:35 +0000
commit8e7a9bc91b98a02e41dd6d53e8a2027c482346a8 (patch)
tree1c94bb1caace167e96375666ad0cc9467e83d471 /text.py
parent34e94e67312be97452e79939ae7104afae3c041b (diff)
downloadanaconda-8e7a9bc91b98a02e41dd6d53e8a2027c482346a8.tar.gz
anaconda-8e7a9bc91b98a02e41dd6d53e8a2027c482346a8.tar.xz
anaconda-8e7a9bc91b98a02e41dd6d53e8a2027c482346a8.zip
more merging fun from the hampton branch. I'm pretty sure this doesn't
work now, at least in gui. text mode might, though
Diffstat (limited to 'text.py')
-rw-r--r--text.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/text.py b/text.py
index 0a5d8e924..a177d970a 100644
--- a/text.py
+++ b/text.py
@@ -29,6 +29,7 @@ from language import expandLangs
from log import log
from flags import flags
from constants_text import *
+from constants import *
stepToClasses = {
"language" : ("language_text", "LanguageWindow"),
@@ -312,7 +313,7 @@ class InstallInterface:
return WaitWindow(self.screen, title, text)
def drawFrame(self):
- self.welcomeText = _("Red Hat Linux (C) 2001 Red Hat, Inc.")
+ self.welcomeText = _("%s (C) 2002 Red Hat, Inc.") % (productName,)
self.screen.drawRootText (0, 0, self.welcomeText)
if (os.access("/usr/share/anaconda/help/C/s1-help-screens-lang.txt", os.R_OK)):
self.screen.pushHelpLine(_(" <F1> for help | <Tab> between elements | <Space> selects | <F12> next screen"))
@@ -368,6 +369,9 @@ class InstallInterface:
# draw the frame after setting up the fallback
self.drawFrame()
+ # draw the frame after setting up the fallback
+ self.drawFrame()
+
id.fsset.registerMessageWindow(self.messageWindow)
id.fsset.registerProgressWindow(self.progressWindow)
id.fsset.registerWaitWindow(self.waitWindow)