Reputation: 26385
A client asked me about the effort to start localize in chinese an app that we have on the App Store. I did for other languages in the past but never for Asian languages and I'm worried that it could be a little bit trickier instead of european languages. Most of the content will be returned by RESTFull services via JSON.
Do exist some sort of special advices to to that?Is it just like a normal localization?
Upvotes: 1
Views: 326
Reputation: 130102
Chinese is not that different from other languages, first of all, check the following:
NSCalendar
from the current locale? Or are you using specific properties of the Gregorian calendar? (China uses Gregorian but I am not sure about other Asian countries).In all other aspects it is like normal localization. You should probably just put the texts there and then test if everything works correctly. If your application is written correctly, there doesn't have to be any special work involved. Asian languages often show i18n problems which were always in the application but just didn't manifest.
Upvotes: 3