Hacketo
Hacketo

Reputation: 4997

Foreign language on ios devices

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

Answers (2)

geo
geo

Reputation: 1791

You have 2 options here:

Add in your project settings the language and "localize" the files.

enter image description here

Localize the single files (for example the Localizable.strings)

enter image description here - enter image description here

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

Numeral
Numeral

Reputation: 1405

You can choose Spanish - Mexico localization inside Other item of list.

Upvotes: 1

Related Questions