vlc/vlc-1.2 | branch: master | Jean-Baptiste Kempf <[email protected]> | Wed Jan 4 01:28:49 2012 +0100| [9aa8352466814dde256f9d1ffda15844907f30a4] | committer: Jean-Baptiste Kempf
DShow: remove choices from translated string Should simplify translators' work (cherry picked from commit fd08420aeb1a37a9b5ceaf47ae3dd442ed438138) Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc/vlc-1.2.git/?a=commit;h=9aa8352466814dde256f9d1ffda15844907f30a4 --- 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 9405af2..59eac96 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() _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
