0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 03:52:15 +02:00

adapt localisation skript to handle pt regions too

This commit is contained in:
nobnago 2012-02-22 11:18:51 +01:00
parent 95fde32504
commit cfa3267cb3

View File

@ -160,12 +160,10 @@ t.write(titleString)
t.close()
for language in languages:
if language == 'zh-TW':
androidLanguage = 'zh-rTW'
elif language == 'zh-CN':
androidLanguage = 'zh-rCN'
if language[:2] in ('zh', 'pt'):
androidLanguage = language[:3] + "r" + language[3:]
else:
androidLanguage = language[:2] # Example: pt-PT becomes pt
androidLanguage = language[:2] # Example: es-ES becomes es
print "\ncopying language files for: " + androidLanguage
valuesDirectory = "../res/values-" + androidLanguage + "/"