Commit 9aa83524 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

DShow: remove choices from translated string

Should simplify translators' work
(cherry picked from commit fd08420a)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 84cd6e04
...@@ -168,8 +168,7 @@ static const char *const ppsz_standards_list_text[] = ...@@ -168,8 +168,7 @@ static const char *const ppsz_standards_list_text[] =
"(0 means default)." ) "(0 means default)." )
#define TVFREQ_TEXT N_("Tuner Frequency") #define TVFREQ_TEXT N_("Tuner Frequency")
#define TVFREQ_LONGTEXT N_( "This overrides the channel. Measured in Hz." ) #define TVFREQ_LONGTEXT N_( "This overrides the channel. Measured in Hz." )
#define STANDARD_TEXT N_( "Standard" ) #define STANDARD_TEXT N_( "Video standard" )
#define STANDARD_LONGTEXT N_( "Video standard (Default, SECAM_D, PAL_B, NTSC_M, etc...)." )
#define COUNTRY_TEXT N_("Tuner country code") #define COUNTRY_TEXT N_("Tuner country code")
#define COUNTRY_LONGTEXT N_( \ #define COUNTRY_LONGTEXT N_( \
"Set the tuner country code that establishes the current " \ "Set the tuner country code that establishes the current " \
...@@ -262,7 +261,7 @@ vlc_module_begin () ...@@ -262,7 +261,7 @@ vlc_module_begin ()
add_integer( CFG_PREFIX "tuner-country", 0, COUNTRY_TEXT, COUNTRY_LONGTEXT, add_integer( CFG_PREFIX "tuner-country", 0, COUNTRY_TEXT, COUNTRY_LONGTEXT,
true ) true )
add_integer( CFG_PREFIX "tuner-standard", 0, STANDARD_TEXT, STANDARD_LONGTEXT, add_integer( CFG_PREFIX "tuner-standard", 0, STANDARD_TEXT, STANDARD_TEXT,
false ) false )
change_integer_list( i_standards_list, ppsz_standards_list_text ) change_integer_list( i_standards_list, ppsz_standards_list_text )
change_safe() change_safe()
......
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