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 ?
|
feedback
|
|
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:
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 | |||||||||||||||||
feedback
|
|
I usually do this in this way, but you MUST have all localization files in your project.
| |||||||||||||
feedback
|
|
As said earlier, just do:
But to avoid having to restart the app, put the line in the main method of main.m, just before UIApplicationMain(...). | |||||
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 | |||
|
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:
I'd appreciate any comments on this. | |||||
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:
and where ever you need a localized string use:
To set the language use:
Works even with consecutive language hopping like:
| |||
|
feedback
|
|
You could build a sub-bundle with the set of localized strings that you want to do this with, and then use | |||
|
feedback
|
|
I like best Mauro Delrio's method. I also have added the following in my Project_Prefix.pch
So if you ever want to use the standard method (that uses NSLocalizedString) you can make a quick syntax substitution in all files. | |||
feedback
|
|
Maybe you should complement with this (on .pch file after #import ):
| |||
|
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. | |||
|
feedback
|