fixed the bug with getting the wrong locale

This commit is contained in:
akh81 2013-08-01 18:21:10 -05:00
parent e5ef32279a
commit f322696e20
1 changed files with 1 additions and 1 deletions

View File

@ -3286,7 +3286,7 @@ def run():
translator = QtCore.QTranslator()
try:
translator.load("translations/bitmessage_" + str(locale.getlocale()[0]))
translator.load("translations/bitmessage_" + str(locale.getdefaultlocale()[0]))
except:
# The above is not compatible with all versions of OSX.
translator.load("translations/bitmessage_en_US") # Default to english.