Changeset 263c385cdbdb7b8ddaa7e4b07634252a142c1ada

Show
Ignore:
Timestamp:
04/05/07 21:21:48 (1 year ago)
Author:
Christophe Mutricy <xtophe@videolan.org>
git-committer:
Christophe Mutricy <xtophe@videolan.org> 1178306508 +0000
git-parent:

[78725911f3e804da241e95e86c4fe54ccf1613db]

git-author:
Christophe Mutricy <xtophe@videolan.org> 1178306508 +0000
Message:

Persian localisation by Meelad Zakaria and Farzaneh Sarafraz

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • NEWS

    r1aad6e6 r263c385  
    7777 * new BDA device driver plugin for DVB-C/S/T capture cards on Microsoft 
    7878   Windows 
     79 
     80Localisations: 
     81 * Persian 
    7982 
    8083Changes between 0.8.6a and 0.8.6b: 
  • THANKS

    rad0117b r263c385  
    6969Ethan C. Baldridge <BaldridgeE at cadmus.com> - directory browsing code 
    7070Eurodata Computer Club <retron.info> - VLC icon design (v0.8.4) 
     71Farzaneh Sarafraz <farzaneh at farsiweb dot info> - Persian localisation 
    7172François Seingier <francois.seingier at club-internet.fr> - TTL setting in the wx stream output dialog 
    7273Frank Chao <frank0624 at gmail.com> - Chinese Traditional translation 
     
    126127Matthieu Lochegnies <prof at tocard dot org> - MPEG audio emphasis fix 
    127128Max Rudberg <max_08 at mac.com> - Mac OS X controller art (v0.7.0) 
     129Meelad Zakaria <meelad at farsiweb dot info> - Persian localisation 
    128130Michael Mondragon <mammon at lokmail.net> - ncurses compilation fix 
    129131Mickael Hoerdt <hoerdt at clarinet.u-strasbg.fr> - IPv6 SSM multicast patch 
  • configure.ac

    rb593c2c r263c385  
    303303dnl Gettext stuff 
    304304dnl 
    305 ALL_LINGUAS="af ar bn ca co cs da de el en_GB es eu fr fur gl he hi hu it ja ka ko lt lv ms my ne nl no oc pa pl ps pt_BR pt_PT ro ru sk sl sq sv tet th tl tr zh_CN zh_TW" 
     305ALL_LINGUAS="af ar bn ca co cs da de el en_GB es eu fa fr fur gl he hi hu it ja ka ko lt lv ms my ne nl no oc pa pl ps pt_BR pt_PT ro ru sk sl sq sv tet th tl tr zh_CN zh_TW" 
    306306AM_GNU_GETTEXT_VERSION(0.11.5) 
    307307AM_GNU_GETTEXT 
  • src/libvlc-module.c

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