diff options
author | Matt Wilson <msw@redhat.com> | 2000-08-14 19:46:52 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-08-14 19:46:52 +0000 |
commit | 3b094f177440b777b9bea0a54e4827892c429183 (patch) | |
tree | 0587b9b403dcb492afbb398301ac69382669caa1 | |
parent | 91598dee51ecd5f87359143c885ebea13a921cad (diff) | |
download | anaconda-3b094f177440b777b9bea0a54e4827892c429183.tar.gz anaconda-3b094f177440b777b9bea0a54e4827892c429183.tar.xz anaconda-3b094f177440b777b9bea0a54e4827892c429183.zip |
prime the lang list for text mode help screen translations
-rw-r--r-- | text.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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() |