Windows: Fix language detection

This commit is contained in:
Philipp Hörist 2019-01-19 19:36:50 +01:00
parent 8c0776e53e
commit 14fb085766
1 changed files with 4 additions and 0 deletions

View File

@ -155,6 +155,10 @@ except locale.Error as error:
try:
LANG = get_default_lang()
if os.name == 'nt':
# Set the env var on Windows because gettext.find() uses it to
# find the translation
os.environ['LANG'] = LANG
print('Found default language: %s' % LANG)
except Exception as error:
print('Failed to determine default language')