Created
February 3, 2017 21:48
-
-
Save sthobis/c52644d079051bc6456c4b20668db813 to your computer and use it in GitHub Desktop.
List of Google Translate supported languages.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* https://gist.github.com/sthobis | |
* source: https://ctrlq.org/code/19899-google-translate-languages | |
*/ | |
const languages = { | |
'af': 'Afrikaans', | |
'sq': 'Albanian', | |
'ar': 'Arabic', | |
'az': 'Azerbaijani', | |
'eu': 'Basque', | |
'bn': 'Bengali', | |
'be': 'Belarusian', | |
'bg': 'Bulgarian', | |
'ca': 'Catalan', | |
'zh-CN': 'Chinese Simplified', | |
'zh-TW': 'Chinese Traditional', | |
'hr': 'Croatian', | |
'cs': 'Czech', | |
'da': 'Danish', | |
'nl': 'Dutch', | |
'en': 'English', | |
'eo': 'Esperanto', | |
'et': 'Estonian', | |
'tl': 'Filipino', | |
'fi': 'Finnish', | |
'fr': 'French', | |
'gl': 'Galician', | |
'ka': 'Georgian', | |
'de': 'German', | |
'el': 'Greek', | |
'gu': 'Gujarati', | |
'ht': 'Haitian Creole', | |
'iw': 'Hebrew', | |
'hi': 'Hindi', | |
'hu': 'Hungarian', | |
'is': 'Icelandic', | |
'id': 'Indonesian', | |
'ga': 'Irish', | |
'it': 'Italian', | |
'ja': 'Japanese', | |
'kn': 'Kannada', | |
'ko': 'Korean', | |
'la': 'Latin', | |
'lv': 'Latvian', | |
'lt': 'Lithuanian', | |
'mk': 'Macedonian', | |
'ms': 'Malay', | |
'mt': 'Maltese', | |
'no': 'Norwegian', | |
'fa': 'Persian', | |
'pl': 'Polish', | |
'pt': 'Portuguese', | |
'ro': 'Romanian', | |
'ru': 'Russian', | |
'sr': 'Serbian', | |
'sk': 'Slovak ', | |
'sl': 'Slovenian', | |
'es': 'Spanish', | |
'sw': 'Swahili', | |
'sv': 'Swedish', | |
'ta': 'Tamil', | |
'te': 'Telugu ', | |
'th': 'Thai', | |
'tr': 'Turkish', | |
'uk': 'Ukrainian', | |
'ur': 'Urdu', | |
'vi': 'Vietnamese', | |
'cy': 'Welsh', | |
'yi': 'Yiddish' | |
}; | |
export default languages; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment