additional tweak to add Turkish

This commit is contained in:
Ben Fry
2014-08-02 09:32:04 -04:00
parent 726d45c364
commit c6bd6d5bec

View File

@@ -86,16 +86,17 @@ public class Language {
static private String[] listSupported() {
// List of languages in alphabetical order.
// List of languages in alphabetical order. (Add yours here.)
final String[] SUPPORTED = {
"de", // de, German, Deutsch
"en", // en, English, English
"el", // el, Greek
"es", // es, Spanish
"fr", // fr, French, Français, Langue française
"ja", // ja, Japanese
"nl", // nl, Dutch, Nederlands
"pt", // pt, Portuguese
"de", // German, Deutsch
"en", // English
"el", // Greek
"es", // Spanish
"fr", // French, Français
"ja", // Japanese
"nl", // Dutch, Nederlands
"pt", // Portuguese
"tr" // Turkish
};
return SUPPORTED;