on iPhone NSLocalizedString returns the string in the language of the iPhone. Is it possible to force NSLocalizedString to use a specific language to have the app in a different language than the device ?

link|improve this question

75% accept rate
feedback

10 Answers

up vote 51 down vote accepted

NSLocalizedString() (and variants thereof) access the "AppleLanguages" key in NSUserDefaults to determine what the user's settings for preferred languages are. This returns an array of language codes, with the first one being the one set by the user for their phone, and the subsequent ones used as fallbacks if a resource is not available in the preferred language. (on the desktop, the user can specify multiple languages with a custom ordering in System Preferences)

You can override the global setting for your own application if you wish by using the setObject:forKey: method to set your own language list. This will take precedence over the globally set value and be returned to any code in your application that is performing localization. The code for this would look something like:

[[NSUserDefaults standardUserDefaults] setObject:[NSArray arrayWithObjects:@"de", @"en", @"fr", nil] forKey:@"AppleLanguages"];

This would make German the preferred language for your application, with English and French as fallbacks. You would want to call this sometime early in your application's startup. You can read more about language/locale preferences here: Internationalization Programming Topics: Getting the Current Language and Locale

link|improve this answer
thanks. exactly what I needed – CodeFlakes Nov 5 '09 at 11:04
1  
This does not work for me, it will use the default language no matter what. – quano Feb 22 '10 at 17:41
2  
This didn't work for me, so I used, [[NSUserDefaults standardUserDefaults] setObject: [NSArray arrayWithObjects:@"el", nil] forKey:@"AppleLanguages"]; – Panagiotis Korros Mar 8 '10 at 13:32
Didn't work for me either, but [[NSUserDefaults standardUserDefaults] setObject: [NSArray arrayWithObjects:@"el", nil] forKey:@"AppleLanguages"]; did. (NB. you have to restart the App for it to take affect)- Thanks Panagiotis Korros! [[NSUserDefaults standardUserDefaults] removeObjectForKey:@"AppleLanguages"]; to undo, and go back to the default language – William Denniss Mar 10 '10 at 15:04
6  
Denniss; It seems to work better if you set the language preference before the app is launched. I do it in the main() function, before UIApplicationMain() is called. Once it is actually running, it won't change the used language, but just set the preference for the next time. – geon Sep 1 '10 at 21:44
show 3 more comments
feedback

I usually do this in this way, but you MUST have all localization files in your project.

@implementation Language

static NSBundle *bundle = nil;

+(void)initialize {
 NSUserDefaults* defs = [NSUserDefaults standardUserDefaults];
 NSArray* languages = [defs objectForKey:@"AppleLanguages"];
 NSString *current = [[languages objectAtIndex:0] retain];
 [self setLanguage:current];

}

/*
  example calls:
  [Language setLanguage:@"it"];
  [Language setLanguage:@"de"];
*/
+(void)setLanguage:(NSString *)l {
 NSLog(@"preferredLang: %@", l);
 NSString *path = [[ NSBundle mainBundle ] pathForResource:l ofType:@"lproj" ];
 bundle = [[NSBundle bundleWithPath:path] retain];
}

+(NSString *)get:(NSString *)key alter:(NSString *)alternate {
 return [bundle localizedStringForKey:key value:alternate table:nil];
}

@end
link|improve this answer
Nice, works excellently. I changed the initialize method to just do bundle = [NSBundle mainBundle]; instead. That way, you don't need to have all localization files in your project. – quano Feb 22 '10 at 22:08
+1. This is a really nice trick that I haven't seen anywhere else. By creating a "sub bundle" from one of the localization folders, you can get the string stuff to work fine as long as you wrap NSLocalizedString with something that detours here. – quixoto Jun 28 '10 at 15:44
excellent idea Mauro. – viggio24 Apr 15 '11 at 21:21
I guess the best approach is to use [NSLocale preferredLanguages]. – nonamelive Jan 17 at 5:11
1  
Excellent Mauro. I noticed that it can also work for files out of your project. If for some reason (as in my case), you need to download strings files from network, and store them in your 'Documents' directory (with the folder structure Documents/en.lproj/Localizable.strings, Documents/fr.lproj/Localizable.strings, ...). You can even though make a NSBundle. Just use this code for path : NSString *path = [NSHomeDirectory() stringByAppendingPathComponent:[NSString stringWithFormat:@"/Documents/%@.lproj", l, nil]]; – arnaud del. Feb 6 at 21:13
show 1 more comment
feedback

As said earlier, just do:

[[NSUserDefaults standardUserDefaults] setObject: [NSArray arrayWithObjects:@"el", nil] forKey:@"AppleLanguages"];

But to avoid having to restart the app, put the line in the main method of main.m, just before UIApplicationMain(...).

link|improve this answer
+1 great suggestion! – Dave DeLong Jun 25 '10 at 21:20
Very helpful answer! P.S. May sound obvious to non-beginners, but you should insert that line after NSAutoreleasePool * pool .. or a few autoreleased objects will leak. – pt2ph8 Jul 18 '11 at 16:52
feedback

The trick to use specific language by selecting it from the app is to force the NSLocalizedString to use specific bundle depending on the selected language ,

here is the post i have written for this http://learning-ios.blogspot.com/2011/04/advance-localization-in-ios-apps.html

and here is the code of one sample app https://github.com/object2dot0/Advance-Localization-in-ios-apps

link|improve this answer
This is excellent. I wish I could give you more upvotes! – Luke May 13 '11 at 3:01
feedback

As Brian Webster mentions, the language needs to be set "sometime early in your application's startup". I thought applicationDidFinishLaunching: of the AppDelegate should be a suitable place to do it, since it's where I do all other initialization.

But as William Denniss mentions, that seems to have an effect only after the app is restarted, which is kind of useless.

It seems to work fine if I put the code in the main function, though:

int main(int argc, char *argv[]) {
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

    // Force language to Swedish.
    [[NSUserDefaults standardUserDefaults]
     setObject:[NSArray arrayWithObject:@"sv"]
     forKey:@"AppleLanguages"];

    int retVal = UIApplicationMain(argc, argv, nil, nil);
    [pool release];
    return retVal;
}

I'd appreciate any comments on this.

link|improve this answer
in my implementation it's a user-settable thing – so I just pop up a dialog telling them they'll need to restart :) – William Denniss Sep 4 '10 at 1:41
It Works, almost for all - except for the localized Default.png image. – Lukasz Nov 30 '10 at 7:40
feedback

I have found another solution that allows you to update the language strings, w/o restarting the app and compatible with genstrings:

Put this macro in the Prefix.pch:

#define currentLanguageBundle [NSBundle bundleWithPath:[[NSBundle mainBundle] pathForResource:[[NSLocale preferredLanguages] objectAtIndex:0] ofType:@"lproj"]]

and where ever you need a localized string use:

NSLocalizedStringFromTableInBundle(@"GalleryTitleKey", nil, currentLanguageBundle, @"")

To set the language use:

[[NSUserDefaults standardUserDefaults] setObject:[NSArray arrayWithObject:@"de"] forKey:@"AppleLanguages"];

Works even with consecutive language hopping like:

NSLog(@"test %@", NSLocalizedStringFromTableInBundle(@"NewKey", nil, currentLanguageBundle, @""));
[[NSUserDefaults standardUserDefaults] setObject:[NSArray arrayWithObject:@"fr"] forKey:@"AppleLanguages"];
NSLog(@"test %@", NSLocalizedStringFromTableInBundle(@"NewKey", nil, currentLanguageBundle, @""));
[[NSUserDefaults standardUserDefaults] setObject:[NSArray arrayWithObject:@"it"] forKey:@"AppleLanguages"];
NSLog(@"test %@", NSLocalizedStringFromTableInBundle(@"NewKey", nil, currentLanguageBundle, @""));
[[NSUserDefaults standardUserDefaults] setObject:[NSArray arrayWithObject:@"de"] forKey:@"AppleLanguages"];
NSLog(@"test %@", NSLocalizedStringFromTableInBundle(@"NewKey", nil, currentLanguageBundle, @""));
link|improve this answer
feedback

You could build a sub-bundle with the set of localized strings that you want to do this with, and then use NSLocalizedStringFromTableInBundle() to load them. (I'm assuming that this is content separate from the normal UI localization you might be doing on the app.)

link|improve this answer
feedback

I like best Mauro Delrio's method. I also have added the following in my Project_Prefix.pch

#import "Language.h"    
#define MyLocalizedString(key, alt) [Language get:key alter:alt]

So if you ever want to use the standard method (that uses NSLocalizedString) you can make a quick syntax substitution in all files.

link|improve this answer
I also like his method and I add a method to load png images: +(UIImage )imageNamed:(NSString *)imageFileName{ NSString fullPath = [bundle pathForResource:imageFileName ofType:@"png"]; UIImage* imageObj = [[UIImage alloc] initWithContentsOfFile:fullPath]; return [imageObj autorelease]; } – Jagie Jul 11 '11 at 13:04
feedback

Maybe you should complement with this (on .pch file after #import ):

    extern NSBundle* bundle; // Declared on Language.m

    #ifdef NSLocalizedString
        #undef NSLocalizedString
        // Delete this line to avoid warning
        #warning "Undefining NSLocalizedString"
    #endif

    #define NSLocalizedString(key, comment) \
        [bundle localizedStringForKey:(key) value:@"" table:nil]
link|improve this answer
feedback

whatever you all do, the best way is to take the short_name for the specified language, i.e.: fr, en, nl, de, it, etc... and assign the same to a global value.

make a picker view to pop up like a drop down menu (combination of a button on click of which a picker view appears from below with a list of languages) and select the language you desire. let the short name be stored internally. make a .h + .m file named LocalisedString.

Set the global value of short_name to be equal to the obtained value in LocalisedString.m When the required language is selected assign the NSBundlePath to create project sub-directories for the needed language. for eg, nl.proj, en.proj.

When the particular proj folder is selected call the localised string for the respective language and change the language dynamically.

no rules broken.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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