remove all language support expect zh_TW

This commit is contained in:
2017-07-04 21:47:29 +08:00
parent ce12df9bd1
commit e74f7b2854
11 changed files with 5 additions and 4095 deletions

View File

@ -27,13 +27,4 @@ def flag(code):
return chr(ord(code[0]) + OFFSET) + chr(ord(code[1]) + OFFSET)
available_locales = {'en_US': flag('US') + ' English (US)',
'de_DE': flag('DE') + ' Deutsch (DE)',
'es_ES': flag('ES') + ' Español (ES)',
'id_ID': flag('ID') + ' Bahasa Indonesia',
'it_IT': flag('IT') + ' Italiano',
'pt_BR': flag('BR') + ' Português Brasileiro',
'ru_RU': flag('RU') + ' Русский язык',
'zh_CN': flag('CN') + ' 中文(简体)',
'zh_HK': flag('HK') + ' 廣東話',
'zh_TW': flag('TW') + ' 中文(台灣)'}
available_locales = {'zh_TW': flag('TW') + ' 中文(台灣)'}