Changeset 5a09a2df55de2f8336ff9d954e536dee9bb9bc18

Show
Ignore:
Timestamp:
09/10/07 23:34:00 (1 year ago)
Author:
Antoine Cellerier <dionoea@videolan.org>
git-committer:
Antoine Cellerier <dionoea@videolan.org> 1189460040 +0000
git-parent:

[f3a39d1239e4e5af32b5558336dabe087dc6722b]

git-author:
Antoine Cellerier <dionoea@videolan.org> 1189460040 +0000
Message:

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.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/libvlc-module.c

    rf3a39d1 r5a09a2d  
    4040#if defined (WIN32) || defined (__APPLE__) 
    4141static const char *ppsz_language[] = 
    42 { "auto", "ar", "en", "en_GB", "ca", "cs", "da", "de", "es", "fa", "fr", "gl", 
    43     "he", "hu", "it", "ja", "ka", "ko", "ms", "nl", "oc", "pl", "pt_BR", "ro", 
    44     "ru", "sk", "sl", "sv", "tr", "zh_CN", "zh_TW" }; 
     42{ "auto", "en", "ar", "pt_BR", "en_GB", "ca", "zh_TW", "cs", "da", "nl", "fr", 
     43  "gl", "ka", "de", "he", "hu", "it", "ja", "ko", "ms", "oc", "fa", "pl", "ro", 
     44  "ru", "zh_CN", "sk", "sl", "es", "sv", "tr" }; 
    4545 
    4646static const char *ppsz_language_text[] = 
    47 { N_("Auto"), N_("Arabic"), N_("American English"), N_("British English"), 
    48 N_("Catalan"), N_("Czech"), N_("Danish"), N_("German"), N_("Spanish"), 
    49 N_("Persian"), N_("French"), N_("Galician"), N_("Hebrew"), N_("Hungarian"), 
    50 N_("Italian"), N_("Japanese"),N_("Georgian"), N_("Korean"), N_("Malay"), 
    51 N_("Dutch"), N_("Occitan"), N_("Polish"), N_("Brazilian Portuguese"), 
    52 N_("Romanian"), N_("Russian"), N_("Slovak"), N_("Slovenian"), N_("Swedish"), 
    53 N_("Turkish"), N_("Simplified Chinese"), N_("Chinese Traditional") }; 
     47{ N_("Auto"), N_("American English"), N_("Arabic"), N_("Brazilian Portuguese"), 
     48  N_("British English"), N_("Catalan"), N_("Chinese Traditional"), N_("Czech"), 
     49  N_("Danish"), N_("Dutch"), N_("French"), N_("Galician"), N_("Georgian"), 
     50  N_("German"), N_("Hebrew"), N_("Hungarian"), N_("Italian"), N_("Japanese"), 
     51  N_("Korean"), N_("Malay"), N_("Occitan"), N_("Persian"), N_("Polish"), 
     52  N_("Romanian"), N_("Russian"), N_("Simplified Chinese"), N_("Slovak"), 
     53  N_("Slovenian"), N_("Spanish"), N_("Swedish"), N_("Turkish") }; 
    5454#endif 
    5555