You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was creating a mapping for our translation service and noted that the LanguageCode for Ukranian (UK) was not defined in the class. Does this mean the language is not supported?
I'm currently using 1.7.0
The text was updated successfully, but these errors were encountered:
Good catch! Ukrainian is supported by the API and you should be able to use it anyway with 1.7.0 by calling e.g.
String authKey = "f63c02c5-f056-..."; // Replace with your key
translator = new Translator(authKey);
TextResult result =
translator.translateText("Hello, world!", null, "UK");
but of course it should be in the LanguageCodes. I'll add the missing language(s) and check all other libraries as well, this must've gotten overlooked during the original language release.
I was creating a mapping for our translation service and noted that the LanguageCode for Ukranian (UK) was not defined in the class. Does this mean the language is not supported?
I'm currently using 1.7.0
The text was updated successfully, but these errors were encountered: