internationalization - Issues in integration of Language integration in android for dynamic text -
i want integrate multiple languages in application dynamic string value. string value not in resource folder tried below apis integrate purpose:
- google translate api
- yandex api
- microsoft translate api
and try below code:
when integrate above api not work properly. give limit access of character error , purchase in $1 google api give same error.
in yandex api remove text content due limit access character.
apart form try below code:
string test="my name john tokest"; try { string translatedtext = translate.execute(test, language.english, language.french);//you can pass params per text input , desired output. system.out.println(translatedtext) } catch (exception e) { e.printstacktrace(); }
still i'm not getting proper result want idea if possible translate string form 1 language other?
Comments
Post a Comment