Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Localization Android

What languages are supported by android for localization with their respective values folder name, the best link i could find was http://developer.android.com/reference/java/util/Locale.html

any body can help me with more languages what if we need to support more languages then listed above.

like image 275
SoftReference Avatar asked Sep 01 '10 06:09

SoftReference


2 Answers

My app uses the following undocumented languages, and they work:

  • ca Catalan
  • el Greek
  • es Spanish
  • pl Polish
  • pt Portuguese
  • ro Romanian
  • ru Russian
  • sv Swedish

More generally, it should be the string in the "639-1" column of this table.

like image 100
Nicolas Raoul Avatar answered Oct 14 '22 12:10

Nicolas Raoul


I suggest use the list of the ISO 639-1 standard

like image 41
Dediqated Avatar answered Oct 14 '22 12:10

Dediqated