I currently using Google Translate API V2 google-translate-api-v2-java-core-0.52.jar
Is there any way to get a list of supported languages and put them into HashMap, where key is a Language name, and value is language ISO Code.
Example
HashMap<String, String> langs = new HashMap<String, String>;
langs.put("English", "en");
So I need all of supported Google Translate languages in this HashMap.
I tried to do this with Locale.getISOCountries()
but I will get all languages in my HashMap and most of them are not supported by Google Translate.
refer:
And, according to the source code of this jar file, it seems method
Translator.languages(null)
can also make it. (passnull
as target language)