vote up 1 vote down star

What's the locale code for traditional Chinese and French Canadian to be used for iPhone localizable strings file. I know the code for simplified Chinese and French, which is zh and fr, but not its counterpart.

flag

42% accept rate

3 Answers

vote up 0 vote down check

After some experiments, I found out that the locale code used to name the localization strings file for Chinese are:

zh_hant (traditional)

zh_hans (simplified)

link|flag
vote up 0 vote down

You can change your language in the iPhone Simulator (though 'Settings'). The following code will show the language code:

NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSArray *languages = [defaults objectForKey:@"AppleLanguages"];
NSString *currentLanguage = [languages objectAtIndex:0];
NSLog(@"Current language: %@", currentLanguage);
link|flag
vote up 3 vote down

Set it on your device and execute

NSLog(@"localeIdentifier: %@", [[NSLocale currentLocale] localeIdentifier]);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.