For the iPhone, is it possible to program applications to translate words from a base language to any of several languages of various users. If so, how?
+2
A:
Sure, this is called localisation (or as Apple calls it, "internationalization"). Here's a tutorial, and here are the Apple docs on it.
ceejayoz
2010-05-09 14:15:40
Thanks a lot. This is helpful.
2010-05-09 20:51:46
A:
You can easily get a localized string using NSBundle
s -localizedStringForKey:value:table:
for values that you've defined in a localizable.strings file.
flohei
2010-05-09 14:50:28