summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-10-08 23:31:13 +0000
committerMatt Wilson <msw@redhat.com>1999-10-08 23:31:13 +0000
commit5bb699158609282327ec2991c5ec42e2719735db (patch)
tree54eee0cf0336ed852e84a5139365a4414d5d1ee2 /gui.py
parente7b36b5c33cdaa8605bc73c69a531d47970605f6 (diff)
downloadanaconda-5bb699158609282327ec2991c5ec42e2719735db.tar.gz
anaconda-5bb699158609282327ec2991c5ec42e2719735db.tar.xz
anaconda-5bb699158609282327ec2991c5ec42e2719735db.zip
more i18n
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index cf61fb2dc..8f50818cf 100755
--- a/gui.py
+++ b/gui.py
@@ -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 ()