Reputation: 4997
I have an IOS app which have a Mexican Localized strings file and I would know what's doing that the app is MX localized. There is no "Español (México)" in the Ipad language list...
Edit2: I have set the language to "Español" and set the timezone to Mexico, but all the app stay configured as spanish app. Can't we make a mexican localized app (or other localization profile that is using sub-identifier)?!
Saint clous very muche !
Upvotes: 2
Views: 240
Reputation: 1791
You have 2 options here:
Add in your project settings the language and "localize" the files.
Localize the single files (for example the Localizable.strings
)
-
Or access it inside code with
NSString *localID = ((NSLocale *)[NSLocale currentLocale]).localeIdentifier;
for example and build up a different structure (like I had to do in "Allow only specific translations for different schemes/targets" for example)
Upvotes: 0
Reputation: 1405
You can choose Spanish - Mexico localization inside Other item of list.
Upvotes: 1