forked from organicmaps/organicmaps
Added es-MX, removed duplicates for regional dialects
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
f8bb50d2cb
commit
deb88bae4c
1 changed files with 6 additions and 0 deletions
|
@ -14,6 +14,7 @@ GOOGLE_TARGET_LANGUAGES = [
|
|||
'ar',
|
||||
'be',
|
||||
'ca',
|
||||
'es-MX',
|
||||
'eu',
|
||||
'fa',
|
||||
'he',
|
||||
|
@ -123,6 +124,11 @@ if __name__ == '__main__':
|
|||
translations = deepl_translate(text_to_translate)
|
||||
google_translations = google_translate(text_to_translate)
|
||||
translations.update(google_translations)
|
||||
# Remove duplicates for regional variations.
|
||||
for regional in ['en-GB', 'es-MX', 'pt-BR']:
|
||||
main = regional.split('-')[0] # 'en', 'es', 'pt'...
|
||||
if translations[regional] == translations[main]:
|
||||
translations.pop(regional)
|
||||
|
||||
print('\nMerged Deepl and Google translations:')
|
||||
en = translations.pop('en')
|
||||
|
|
Loading…
Add table
Reference in a new issue