Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to show the current language that the device UI is using. What code would I use?

I want this as an NSString in fully spelled out format. (Not @"en_US")

share|improve this question

6 Answers

up vote 271 down vote accepted

The solutions provided will actually return the current region of the device - not the currently selected language. These are often one and the same. However, if I am in North America and I set my language to Japanese, my region will still be English (United States). In order to retrieve the currently selected language, you can do:

NSString * language = [[NSLocale preferredLanguages] objectAtIndex:0];

This will return a two letter code for the currently selected language. "en" for English, "es" for Spanish, "de" for German, etc. For more examples, please see this Wikipedia entry (in particular, the 639-1 column):

http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes

Then it's a simple matter of converting the two letter codes to the string you would like to display. So if it's "en", display "English".

Hope this helps someone that's looking to differentiate between region and currently selected language.

share|improve this answer
1  
Exactly what I was looking for. I had the same issue where region is not the same as language. – Jasarien Aug 12 '11 at 8:37
   
Just what I need. Thanks!!!! – Teofilo Israel Vizcaino Rodrig Nov 28 '11 at 0:46
3  
bad answer: returns zh-Hans for chinese, which is not the iso code. – nerith Aug 27 '12 at 19:21
1  
The first two characters give the country, the stuff after the dash gives the region, the rest is just for narrowing it down further (such as local dialects). zh is listed as the iso code for Chinese. For those looking for a specific language like I was, try the IANA registry – Xono Sep 25 '12 at 5:52
5  
Given no one has mentioned this, the returned code is IETF BCP 47 (tools.ietf.org/html/bcp47) so can have various parts beyond the initial two. So the best thing is probably: [[[NSLocale preferredLanguages] objectAtIndex:0] substringToIndex:2]. – Mike Rhodes Dec 18 '12 at 12:25
show 6 more comments

This will probably give you what you want:

NSLocale *locale = [NSLocale currentLocale];

NSString *language = [locale displayNameForKey:NSLocaleIdentifier 
                                         value:[locale localeIdentifier]];

It will show the name of the language, in the language itself. For example:

Français (France)
English (United States)
share|improve this answer
Bingo! Thanks!! – Moshe Oct 11 '10 at 22:15
9  
wrong answer: this returns the locale, not the language, which can be different... – nerith Aug 27 '12 at 19:21
This is definitely wrong, for example if you set the language in the phone settings to English and the Region format to lets say German, Germany, the example above returns "German". Still the phone language is set to English. – jake_hetfield yesterday

The selected answer returns the current device language, but not the actual language used in the app. If you don't provide a localization for the preferred language in your app, the first available in the preferred order is used.

To know the current language selected within your localizations use

[[NSBundle mainBundle] preferredLocalizations]

Example:

NSString *language = [[[NSBundle mainBundle] preferredLocalizations] objectAtIndex:0];
share|improve this answer

You can use the displayNameForKey:value: method of NSLocale:

// get a French locale instance
NSLocale *frLocale = [[[NSLocale alloc] initWithLocaleIdentifier:@"fr_FR"] autorelease];

// use it to get translated display names of fr_FR and en_US
NSLog(@"%@", [frLocale displayNameForKey:NSLocaleIdentifier value:@"fr_FR"]);
NSLog(@"%@", [frLocale displayNameForKey:NSLocaleIdentifier value:@"en_US"]);

This will print out:

français (France)
anglais (États-Unis)

If you specify the same locale identifier for the initWithLocaleIdentifier: and also the displayNameForKey:value: method, then it will give you the native name of the language. I've discovered that if you remove the country code and use just fr and en, that it will also omit the country from the display name (on Mac OS X at least, not sure about iOS).

share|improve this answer

For MonoTouch C# developers use:

NSLocale.PreferredLanguages.FirstOrDefault() ?? "en"

PreferredLanguages is an array, and it may never be empty and you could use:

NSLocale.PreferredLanguages[0]

But I prefer to be safe.

Note: I know this was an iOS question, but as I am a MonoTouch developer, the answer on this page led me in the right direction and I thought I'd share the results.

share|improve this answer
I'm currently using NSLocale.PreferredLanguages and I'm getting an empty array. I assume you've read in the documentation that it may never be empty but I can't see this anywhere? – JFoulkes Apr 17 '12 at 9:36
No, honestly that was just an assumption of my own. – Chuck Savage Apr 17 '12 at 16:43
@LarryF Watch this video: jonas.follesoe.no/2011/07/22/cross-platform-mobile-ndc-2011 It is very informative on how to structure your code / multi-platform apps. – Chuck Savage Sep 14 '12 at 16:51

i use this

    NSArray *arr = [NSLocale preferredLanguages];
for (NSString *lan in arr) {
    NSLog(@"%@: %@ %@",lan, [NSLocale canonicalLanguageIdentifierFromString:lan], [[[NSLocale alloc] initWithLocaleIdentifier:lan] displayNameForKey:NSLocaleIdentifier value:lan]);
}

ignore memory leak..

and result is

2013-03-02 20:01:57.457 xx[12334:907] zh-Hans: zh-Hans 中文(简体中文)
2013-03-02 20:01:57.460 xx[12334:907] en: en English
2013-03-02 20:01:57.462 xx[12334:907] ja: ja 日本語
2013-03-02 20:01:57.465 xx[12334:907] fr: fr français
2013-03-02 20:01:57.468 xx[12334:907] de: de Deutsch
2013-03-02 20:01:57.472 xx[12334:907] nl: nl Nederlands
2013-03-02 20:01:57.477 xx[12334:907] it: it italiano
2013-03-02 20:01:57.481 xx[12334:907] es: es español
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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