Reputation: 6666
I wondering about localizations in Android. Is it possible to localize for Peruvian spannish for instance? Lets say I want my app in Spanish (Spain) and Spanish (Peru). How can I accomplish this?
Thankful for advice!
Upvotes: 1
Views: 471
Reputation: 7240
You can do that by first putting all you texts in a XML file (see Using Resources for Localization) and than create to folders, one for that Spain Spanish and one for the Peru Spanish.
/res/values-es-ES
/res/values-es-rPE
Upvotes: 4