Locale fix
Date formatting sometimes didn't use the correct locale encoding
This commit is contained in:
parent
c29f266020
commit
92e3e62640
|
@ -106,6 +106,7 @@ def change_translation(locale):
|
||||||
lang = pythonlocale.normalize(l10n.getTranslationLanguage())
|
lang = pythonlocale.normalize(l10n.getTranslationLanguage())
|
||||||
try:
|
try:
|
||||||
pythonlocale.setlocale(pythonlocale.LC_ALL, lang)
|
pythonlocale.setlocale(pythonlocale.LC_ALL, lang)
|
||||||
|
l10n.encoding = pythonlocale.nl_langinfo(pythonlocale.CODESET)
|
||||||
except:
|
except:
|
||||||
logger.error("Failed to set locale to %s", lang, exc_info=True)
|
logger.error("Failed to set locale to %s", lang, exc_info=True)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user