1
0
Fork 0

For #13066 - Translate locale codes to Android specific variants before filtering

master
Kainalu Hagiwara 2020-07-29 09:52:01 -07:00
parent d5b105097e
commit a8fd37740d
1 changed files with 11 additions and 1 deletions

View File

@ -11,11 +11,21 @@ import re
OPEN_LOCALES = "locales = ["
CLOSE_LOCALES = "]"
# Android uses non-standard locale codes, these are the mappings back and forth
# See Legacy language codes in https://developer.android.com/reference/java/util/Locale.html
ANDROID_LEGACY_MAP = {
'he': 'iw',
'id': 'in',
'yi': 'ji'
}
def trim_to_locale(str):
match = re.search('\s*"([a-z]+-?[A-Z]*)",\s*', str)
if not match:
raise Exception("Failed parsing locale found in l10n.toml: " + str)
return match.group(1)
locale = match.group(1)
return ANDROID_LEGACY_MAP.get(locale, locale)
# This file is a dumb parser that converts values from '/l10n-release.toml' to be easily