Commit c525c6f2 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* src/libvlc.h: added Chinese Traditional to the list of languages

* modules/access/v4l/v4l.c: fixed l10n-strings (we use American English in l10n-strings)
* de.po: first update to the German translation
parent 998bed84
...@@ -111,9 +111,9 @@ static void Close( vlc_object_t * ); ...@@ -111,9 +111,9 @@ static void Close( vlc_object_t * );
#define HUE_TEXT N_( "Hue" ) #define HUE_TEXT N_( "Hue" )
#define HUE_LONGTEXT N_( \ #define HUE_LONGTEXT N_( \
"Set the Hue of the video input" ) "Set the Hue of the video input" )
#define COLOUR_TEXT N_( "Colour" ) #define COLOUR_TEXT N_( "Color" )
#define COLOUR_LONGTEXT N_( \ #define COLOUR_LONGTEXT N_( \
"Set the Colour of the video input" ) "Set the Color of the video input" )
#define CONTRAST_TEXT N_( "Contrast" ) #define CONTRAST_TEXT N_( "Contrast" )
#define CONTRAST_LONGTEXT N_( \ #define CONTRAST_LONGTEXT N_( \
"Set the Contrast of the video input" ) "Set the Contrast of the video input" )
......
This diff is collapsed.
...@@ -29,11 +29,11 @@ ...@@ -29,11 +29,11 @@
static char *ppsz_language[] = static char *ppsz_language[] =
{ "auto", "en", "en_GB", "bn", "da", "de", "el", "es", { "auto", "en", "en_GB", "bn", "da", "de", "el", "es",
"fr", "hi", "hu", "it", "ja", "my", "ne", "nl", "no", "fr", "hi", "hu", "it", "ja", "my", "ne", "nl", "no",
"pl", "ps", "pt_BR", "ru", "sv", "tet", "tl" }; "pl", "ps", "pt_BR", "ru", "sv", "tet", "tl", "zh_TW" };
static char *ppsz_language_text[] = static char *ppsz_language_text[] =
{ N_("Auto"), N_("American"), N_("British"), N_("Bengali"), N_("Danish"), N_("German"), N_("Greek"), N_("Spanish"), { N_("Auto"), N_("American"), N_("British"), N_("Bengali"), N_("Danish"), N_("German"), N_("Greek"), N_("Spanish"),
N_("French"), N_("Hindi"), N_("Hungarian"), N_("Italian"), N_("Japanese"), N_("Burmese"), N_("Nepali"), N_("Dutch"), N_("Norwegian"), N_("French"), N_("Hindi"), N_("Hungarian"), N_("Italian"), N_("Japanese"), N_("Burmese"), N_("Nepali"), N_("Dutch"), N_("Norwegian"),
N_("Polish"), N_("Pashto"), N_("Brazilian"), N_("Russian"), N_("Swedish"), N_("Tetum"), N_("Tagalog") }; N_("Polish"), N_("Pashto"), N_("Brazilian"), N_("Russian"), N_("Swedish"), N_("Tetum"), N_("Tagalog"), N_("Chinese Traditional") };
static char *ppsz_snap_formats[] = static char *ppsz_snap_formats[] =
{ "png", "jpg" }; { "png", "jpg" };
......
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