KawaiKx
KawaiKx

Reputation: 9908

internationalization and localization - multi language support

How does internationalization/localization works for an ios and android microblogging app?

is it possible that a user can type the message in his/her native language and rest of the world can read it in the language it wants ?

Upvotes: 0

Views: 171

Answers (1)

Muhammad Nabeel Arif
Muhammad Nabeel Arif

Reputation: 19310

With Internalization and Localization in iOS and android you have to specify the text in all languages you support i.e a copy of every TEXT in one language should be translated into another. I have provided links below which will help you to get started with it in respective mobile platform.

If you want to translate dynamic text, i.e if you want to translate one user's message to any other language of recipient user. You should consider using Google Translate API

iOS:

Android:

Upvotes: 1

Related Questions