Commit 6796f4ef authored by Felix Paul Kühne's avatar Felix Paul Kühne

* partial translation to Simplified Chinese by Wei Mingzhi <whistler_wmz@users.sourceforge.net>

parent 7ea7afc0
...@@ -67,6 +67,7 @@ Translations: ...@@ -67,6 +67,7 @@ Translations:
The following languages were added: The following languages were added:
* Korean * Korean
* Romanian * Romanian
* Simplified Chinese
Changes between 0.8.1 and 0.8.2: Changes between 0.8.1 and 0.8.2:
-------------------------------- --------------------------------
......
...@@ -113,6 +113,7 @@ Vladimir Chernyshov - MMX motion optimizations ...@@ -113,6 +113,7 @@ Vladimir Chernyshov - MMX motion optimizations
Wade Majors <guru at startrek.com> - BeOS icon integration, debugging and fixes Wade Majors <guru at startrek.com> - BeOS icon integration, debugging and fixes
Wallace Wadge <wwadge at gmail.com> - multiple programs TS mux Wallace Wadge <wwadge at gmail.com> - multiple programs TS mux
Watanabe Go <go at dsl.gr.jp> - fix for non-ASCII filenames Watanabe Go <go at dsl.gr.jp> - fix for non-ASCII filenames
Wei Mingzhi <whistler_wmz at users.sourceforge.net> - Simplied Chinese translation
Xavier Maillard <zedek at fxgsproject.org> - audio converters Xavier Maillard <zedek at fxgsproject.org> - audio converters
Xavier Marchesini <xav at alarue.net> - Win32 fixes Xavier Marchesini <xav at alarue.net> - Win32 fixes
Xènia Albà Cantero <xenia_alba at hotmail.com> - Catalan translation Xènia Albà Cantero <xenia_alba at hotmail.com> - Catalan translation
......
...@@ -228,7 +228,7 @@ AM_CONDITIONAL(HAVE_WINCE, test "${SYS}" = "mingwce") ...@@ -228,7 +228,7 @@ AM_CONDITIONAL(HAVE_WINCE, test "${SYS}" = "mingwce")
dnl dnl
dnl Gettext stuff dnl Gettext stuff
dnl dnl
ALL_LINGUAS="ca da de en_GB es fr it ja ko nl pt_BR ro ru tr zh_TW" ALL_LINGUAS="ca da de en_GB es fr it ja ko nl pt_BR ro ru tr zh_CN zh_TW"
AM_GNU_GETTEXT_VERSION(0.11.5) AM_GNU_GETTEXT_VERSION(0.11.5)
AM_GNU_GETTEXT AM_GNU_GETTEXT
if test "${nls_cv_force_use_gnu_gettext}" = "yes"; then if test "${nls_cv_force_use_gnu_gettext}" = "yes"; then
......
This diff is collapsed.
...@@ -29,9 +29,9 @@ ...@@ -29,9 +29,9 @@
static char *ppsz_language[] = static char *ppsz_language[] =
{ "auto", "en", "en_GB", "ca", "da", "de", "es", { "auto", "en", "en_GB", "ca", "da", "de", "es",
"fr", "it", "ja", "ko", "nl", "pt_BR", "ro", "ru", "tr", "zh_TW" }; "fr", "it", "ja", "ko", "nl", "pt_BR", "ro", "ru", "tr", "zh_CN", "zh_TW" };
static char *ppsz_language_text[] = static char *ppsz_language_text[] =
{ N_("Auto"), N_("American English"), N_("British English"), N_("Catalan"), N_("Danish"), N_("German"), N_("Spanish"), N_("French"), N_("Italian"), N_("Japanese"), N_("Korean"), N_("Dutch"), N_("Brazilian Portuguese"), N_("Romanian"), N_("Russian"), N_("Turkish"), N_("Chinese Traditional") }; { N_("Auto"), N_("American English"), N_("British English"), N_("Catalan"), N_("Danish"), N_("German"), N_("Spanish"), N_("French"), N_("Italian"), N_("Japanese"), N_("Korean"), N_("Dutch"), N_("Brazilian Portuguese"), N_("Romanian"), N_("Russian"), N_("Turkish"), N_("Simplified Chinese"), N_("Chinese Traditional") };
static char *ppsz_snap_formats[] = static char *ppsz_snap_formats[] =
{ "png", "jpg" }; { "png", "jpg" };
......
...@@ -56,6 +56,7 @@ static int FindLanguage( const char * psz_lang ) ...@@ -56,6 +56,7 @@ static int FindLanguage( const char * psz_lang )
"Romanian", "ro", "Romanian", "ro",
"Russian", "ru", "Russian", "ru",
"Turkish", "tr", "Turkish", "tr",
"Simplified Chinese", "zh_CN",
"Chinese Traditional", "zh_TW", "Chinese Traditional", "zh_TW",
NULL NULL
}; };
......
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