[vlc-commits] DShow: remove choices from translated string
Jean-Baptiste Kempf
git at videolan.org
Wed Jan 4 01:36:13 CET 2012
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Jan 4 01:28:49 2012 +0100| [fd08420aeb1a37a9b5ceaf47ae3dd442ed438138] | committer: Jean-Baptiste Kempf
DShow: remove choices from translated string
Should simplify translators' work
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fd08420aeb1a37a9b5ceaf47ae3dd442ed438138
---
modules/access/dshow/dshow.cpp | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/modules/access/dshow/dshow.cpp b/modules/access/dshow/dshow.cpp
index 100da11..ae0f217 100644
--- a/modules/access/dshow/dshow.cpp
+++ b/modules/access/dshow/dshow.cpp
@@ -168,8 +168,7 @@ static const char *const ppsz_standards_list_text[] =
"(0 means default)." )
#define TVFREQ_TEXT N_("Tuner Frequency")
#define TVFREQ_LONGTEXT N_( "This overrides the channel. Measured in Hz." )
-#define STANDARD_TEXT N_( "Standard" )
-#define STANDARD_LONGTEXT N_( "Video standard (Default, SECAM_D, PAL_B, NTSC_M, etc...)." )
+#define STANDARD_TEXT N_( "Video standard" )
#define COUNTRY_TEXT N_("Tuner country code")
#define COUNTRY_LONGTEXT N_( \
"Set the tuner country code that establishes the current " \
@@ -262,7 +261,7 @@ vlc_module_begin ()
add_integer( CFG_PREFIX "tuner-country", 0, COUNTRY_TEXT, COUNTRY_LONGTEXT,
true )
- add_integer( CFG_PREFIX "tuner-standard", 0, STANDARD_TEXT, STANDARD_LONGTEXT,
+ add_integer( CFG_PREFIX "tuner-standard", 0, STANDARD_TEXT, STANDARD_TEXT,
false )
change_integer_list( i_standards_list, ppsz_standards_list_text )
change_safe()
More information about the vlc-commits
mailing list