What is "values" folder name for Danish Language?

android, localization

Solution

For Danish, you got to use values-da folder.

Edit: It turns out, according to this post that it is values-da.

Plus, according to the Android `Locale` class documentation:

The language codes are two-letter lowercase ISO language codes (such as "en") as defined by ISO 639-1. 
The country codes are two-letter uppercase ISO country codes (such as "US") as defined by ISO 3166-1. 
The variant codes are unspecified. 

Problem

I read the localization in Android. Here for we need to create different values's folder for each language. for e.g. - res/values/strings.xml : Contains English text for all the strings that the application uses, including text for a string named title. - res/values-fr/strings.xml : Contain French text for all the strings, including title. - res/values-ja/strings.xml : Contain Japanese text for all the strings except title. Now I want to give support for Danish language then what should I name to value's folder ?

Original source

Related problems