Titan/webapp/titanembeds/i18n.py

23 lines
775 B
Python
Raw Normal View History

LANGUAGES = {
'ca': 'Català', # Catalan
'da': 'Dansk', # Danish
2017-12-12 14:12:38 +01:00
'de': 'Deutsche', # German
'en_US': 'English',
2017-11-27 03:45:50 +01:00
'es_ES': 'Español', # Spanish
2017-12-12 14:12:38 +01:00
'fr': 'français', # French
'hi': 'हिंदी', # Hindi
'hu': "Magyar", # Hungarian
2017-12-12 14:12:38 +01:00
'id': 'bahasa Indonesia', # Indonesian
'it': 'Italiano', # Italian
'nl': 'Nederlands', # Dutch
2017-11-25 07:32:21 +01:00
'pl': 'Polski', # Polish
2017-12-12 14:12:38 +01:00
'pt_PT': 'Português', # Portuguese
'ro': 'Română', # Romanian
2017-12-12 14:12:38 +01:00
'sr': 'Српски', # Serbian (Cyrillic)
2018-01-03 23:13:41 +01:00
'sr_CS': 'Српски', # Serbian (Latin)
2017-12-12 14:12:38 +01:00
'sv_SE': 'svenska', # Swedish
2017-11-26 03:15:30 +01:00
'th': "ไทย", # Thai
2017-11-27 03:45:50 +01:00
'tr': 'Türk', # Turkish
2017-12-30 10:14:20 +01:00
'zh_Hans_CN': '简体中文', # Chinese Simplified
'zh_Hant_TW': '中国传统的', # Chinese Traditional
}