1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-15 08:40:34 +03:00

l10n: Make the zh-CN -> zh-Hans comment a HACK

This commit is contained in:
Athanasius 2021-12-11 14:15:30 +00:00
parent 72fc78048f
commit fc3a7b32a3
No known key found for this signature in database
GPG Key ID: AE3E527847057C7D

View File

@ -354,8 +354,9 @@ class _Locale:
):
languages = wszarray_to_list(buf)
# OneSky calls "Chinese Simplified" "zh-Hans" in the name of the file,
# but that will be zh-CN in terms of locale. So map zh-CN -> zh-Hans
# HACK: <n/a> | 2021-12-11: OneSky calls "Chinese Simplified" "zh-Hans"
# in the name of the file, but that will be zh-CN in terms of
# locale. So map zh-CN -> zh-Hans
languages = ['zh-Hans' if lang == 'zh-CN' else lang for lang in languages]
return languages