Commit 5a09a2df authored by Antoine Cellerier's avatar Antoine Cellerier

Sort the VLC translation languages alphabeticaly according to their label, and...

Sort the VLC translation languages alphabeticaly according to their label, and not their code, in English. The order will be broken in some other languages I guess but at least it'll be coherent the first time the user launches VLC (in English) and changes the language to use in the preferences.
parent f3a39d12
...@@ -39,18 +39,18 @@ ...@@ -39,18 +39,18 @@
#if defined (WIN32) || defined (__APPLE__) #if defined (WIN32) || defined (__APPLE__)
static const char *ppsz_language[] = static const char *ppsz_language[] =
{ "auto", "ar", "en", "en_GB", "ca", "cs", "da", "de", "es", "fa", "fr", "gl", { "auto", "en", "ar", "pt_BR", "en_GB", "ca", "zh_TW", "cs", "da", "nl", "fr",
"he", "hu", "it", "ja", "ka", "ko", "ms", "nl", "oc", "pl", "pt_BR", "ro", "gl", "ka", "de", "he", "hu", "it", "ja", "ko", "ms", "oc", "fa", "pl", "ro",
"ru", "sk", "sl", "sv", "tr", "zh_CN", "zh_TW" }; "ru", "zh_CN", "sk", "sl", "es", "sv", "tr" };
static const char *ppsz_language_text[] = static const char *ppsz_language_text[] =
{ N_("Auto"), N_("Arabic"), N_("American English"), N_("British English"), { N_("Auto"), N_("American English"), N_("Arabic"), N_("Brazilian Portuguese"),
N_("Catalan"), N_("Czech"), N_("Danish"), N_("German"), N_("Spanish"), N_("British English"), N_("Catalan"), N_("Chinese Traditional"), N_("Czech"),
N_("Persian"), N_("French"), N_("Galician"), N_("Hebrew"), N_("Hungarian"), N_("Danish"), N_("Dutch"), N_("French"), N_("Galician"), N_("Georgian"),
N_("Italian"), N_("Japanese"),N_("Georgian"), N_("Korean"), N_("Malay"), N_("German"), N_("Hebrew"), N_("Hungarian"), N_("Italian"), N_("Japanese"),
N_("Dutch"), N_("Occitan"), N_("Polish"), N_("Brazilian Portuguese"), N_("Korean"), N_("Malay"), N_("Occitan"), N_("Persian"), N_("Polish"),
N_("Romanian"), N_("Russian"), N_("Slovak"), N_("Slovenian"), N_("Swedish"), N_("Romanian"), N_("Russian"), N_("Simplified Chinese"), N_("Slovak"),
N_("Turkish"), N_("Simplified Chinese"), N_("Chinese Traditional") }; N_("Slovenian"), N_("Spanish"), N_("Swedish"), N_("Turkish") };
#endif #endif
static const char *ppsz_snap_formats[] = static const char *ppsz_snap_formats[] =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment