diff options
author | Matt Wilson <msw@redhat.com> | 1999-10-08 23:31:13 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-10-08 23:31:13 +0000 |
commit | 5bb699158609282327ec2991c5ec42e2719735db (patch) | |
tree | 54eee0cf0336ed852e84a5139365a4414d5d1ee2 /gui.py | |
parent | e7b36b5c33cdaa8605bc73c69a531d47970605f6 (diff) | |
download | anaconda-5bb699158609282327ec2991c5ec42e2719735db.tar.gz anaconda-5bb699158609282327ec2991c5ec42e2719735db.tar.xz anaconda-5bb699158609282327ec2991c5ec42e2719735db.zip |
more i18n
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -450,7 +450,10 @@ class InstallControlWindow (Thread): self.ii = ii self.todo = todo self.steps = steps - self.locale = "C" + if os.environ.has_key ("LC_ALL"): + self.locale = os.environ["LC_ALL"] + else: + self.locale = "C" def run (self): threads_enter () |