views:

204

answers:

2

I have some short text that I want to ship in the currently active language. What's the most easy way to do it? Example: I have the text "the cat", but when someone from spain uses the app, he/she wants to read "el gato". Is there a standard way to do it easily with UIKit? They're pretty simple texts only. I can imagine some kind of property list and feeding it with a key and locale, and getting the appropriate text snippet out of there.

+4  A: 

There's a lot of builtin support available for you to leverage, but it will require some work on your part. Check out this article on internationalization for more info on getting started.

fbrereto
+1  A: 

Check out NSLocalizedString.

Corey Floyd