Changeset 263c385cdbdb7b8ddaa7e4b07634252a142c1ada
- Timestamp:
- 04/05/07 21:21:48 (1 year ago)
- git-parent:
- Files:
-
- NEWS (modified) (1 diff)
- THANKS (modified) (2 diffs)
- configure.ac (modified) (1 diff)
- po/fa.po (added)
- src/libvlc-module.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
NEWS
r1aad6e6 r263c385 77 77 * new BDA device driver plugin for DVB-C/S/T capture cards on Microsoft 78 78 Windows 79 80 Localisations: 81 * Persian 79 82 80 83 Changes between 0.8.6a and 0.8.6b: THANKS
rad0117b r263c385 69 69 Ethan C. Baldridge <BaldridgeE at cadmus.com> - directory browsing code 70 70 Eurodata Computer Club <retron.info> - VLC icon design (v0.8.4) 71 Farzaneh Sarafraz <farzaneh at farsiweb dot info> - Persian localisation 71 72 François Seingier <francois.seingier at club-internet.fr> - TTL setting in the wx stream output dialog 72 73 Frank Chao <frank0624 at gmail.com> - Chinese Traditional translation … … 126 127 Matthieu Lochegnies <prof at tocard dot org> - MPEG audio emphasis fix 127 128 Max Rudberg <max_08 at mac.com> - Mac OS X controller art (v0.7.0) 129 Meelad Zakaria <meelad at farsiweb dot info> - Persian localisation 128 130 Michael Mondragon <mammon at lokmail.net> - ncurses compilation fix 129 131 Mickael Hoerdt <hoerdt at clarinet.u-strasbg.fr> - IPv6 SSM multicast patch configure.ac
rb593c2c r263c385 303 303 dnl Gettext stuff 304 304 dnl 305 ALL_LINGUAS="af ar bn ca co cs da de el en_GB es eu f r 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"305 ALL_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" 306 306 AM_GNU_GETTEXT_VERSION(0.11.5) 307 307 AM_GNU_GETTEXT src/libvlc-module.c
ra58e289 r263c385 40 40 #if defined (WIN32) || defined (__APPLE__) 41 41 static const char *ppsz_language[] = 42 { "auto", "en", "en_GB", "ca", "cs", "da", "de", "es", "f r", "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" }; 45 45 46 46 static const char *ppsz_language_text[] = 47 47 { N_("Auto"), N_("American English"), N_("British English"), 48 48 N_("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"),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_("Brazilian Portuguese"), N_("Romanian"), 52 N_("Russian"), N_("Slovak"), N_("Slovenian"), N_("Swedish"), N_("Turkish"), 53 53 N_("Simplified Chinese"), N_("Chinese Traditional") }; 54 54 #endif
