summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-08-14 19:46:52 +0000
committerMatt Wilson <msw@redhat.com>2000-08-14 19:46:52 +0000
commit3b094f177440b777b9bea0a54e4827892c429183 (patch)
tree0587b9b403dcb492afbb398301ac69382669caa1 /text.py
parent91598dee51ecd5f87359143c885ebea13a921cad (diff)
downloadanaconda-3b094f177440b777b9bea0a54e4827892c429183.tar.gz
anaconda-3b094f177440b777b9bea0a54e4827892c429183.tar.xz
anaconda-3b094f177440b777b9bea0a54e4827892c429183.zip
prime the lang list for text mode help screen translations
Diffstat (limited to 'text.py')
-rw-r--r--text.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/text.py b/text.py
index 304f0d9eb..22255a5ec 100644
--- a/text.py
+++ b/text.py
@@ -855,15 +855,17 @@ class InstallInterface:
self.drawFrame()
# uncomment this line to make the installer quit on <Ctrl+Z>
# handy for quick debugging.
- self.screen.suspendCallback(killSelf, self.screen)
+# self.screen.suspendCallback(killSelf, self.screen)
# uncomment this line to drop into the python debugger on <Ctrl+Z>
# --VERY handy--
- #self.screen.suspendCallback(debugSelf, self.screen)
+ self.screen.suspendCallback(debugSelf, self.screen)
self.individual = Flag(0)
self.step = 0
self.dir = 1
signal.signal(signal.SIGINT, signal.SIG_IGN)
signal.signal(signal.SIGTSTP, signal.SIG_IGN)
+ if os.environ.has_key ("LC_ALL"):
+ cat.setlangs ([os.environ["LC_ALL"][:2]])
def __del__(self):
self.screen.finish()