Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the meaning of "Localization native development region" entry in info.plist?

Tags:

ios

info.plist

I don't know if I really understood the function of the "Localization native development region" entry in info.plist file.

Somewhere I read that this entry allows to specify the app language when there is no matching with a language resource dir.

I have an app localized in three languages: english, italian and spanish (en.lproj, it.lproj and es.lproj) and I set "Localization native development region" entry to Italy. When I change the language and locale in "Settings" (for example by chosing the arabic language and a proper region), the app language is english. Shouldn't be it italian as I set "Localization native development region" to Italy in the info.plist?

Any ideas? Could it be tied to the AppStore app description language?

like image 321
Sefran2 Avatar asked Feb 15 '11 15:02

Sefran2


3 Answers

From the CFBundle documentation:

kCFBundleDevelopmentRegionKey The name of the development language of the bundle. When CFBundle looks for resources, the fallback is to look in the lproj whose name is given by the kCFBundleDevelopmentRegionKey in the Info.plist file. You must, therefore, ensure that a bundle contains an lproj with that exact name containing a copy of every localized resource, otherwise CFBundle cannot guarantee the fallback mechanism will work. Available in iOS 2.0 and later. Declared in CFBundle.h.

No relation to the AppStore Description language.

like image 109
serpah Avatar answered Oct 15 '22 03:10

serpah


I resolved using the settings below.

Settings

like image 42
Cleyton T. Avatar answered Oct 15 '22 03:10

Cleyton T.


The native development region also sets the default language spoken by VoiceOver. If you set this correctly you won't have to override the accessibility language in all the default components used in your app (which fall back to English).

like image 44
Kim Avatar answered Oct 15 '22 02:10

Kim