summaryrefslogtreecommitdiffstats
path: root/pyLoadGui.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-09-03 00:22:23 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2010-09-03 00:22:23 +0200
commit6da22acfa81961473c8458de4b9a9723668be31f (patch)
tree2f8a4f4d781a4ca64ebc8da658e5d63a27d39699 /pyLoadGui.py
parentgui: free space display (diff)
downloadpyload-6da22acfa81961473c8458de4b9a9723668be31f.tar.xz
little fixes
Diffstat (limited to 'pyLoadGui.py')
-rwxr-xr-xpyLoadGui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyLoadGui.py b/pyLoadGui.py
index 49fd6e067..3d4f59b62 100755
--- a/pyLoadGui.py
+++ b/pyLoadGui.py
@@ -72,7 +72,7 @@ class main(QObject):
parser = XMLParser(join(self.path, "module", "config", "gui_default.xml"))
lang = parser.xml.elementsByTagName("language").item(0).toElement().text()
- translation = gettext.translation("pyLoadGui", join(pypath, "locale"), languages=[str(lang)])
+ translation = gettext.translation("pyLoadGui", join(pypath, "locale"), languages=["en", str(lang)])
try:
translation.install(unicode=(True if sys.stdout.encoding.lower().startswith("utf") else False))
except: