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:

  1. google translate api
  2. yandex api
  3. 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

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -