Commit 79f9f30a authored by Clément Stenac's avatar Clément Stenac

More strings

parent 31943c2c
...@@ -86,6 +86,7 @@ static char *ppsz_tuner_input_text[] = ...@@ -86,6 +86,7 @@ static char *ppsz_tuner_input_text[] =
"Name of the video device that will be used by the " \ "Name of the video device that will be used by the " \
"DirectShow plugin. If you don't specify anything, the default device " \ "DirectShow plugin. If you don't specify anything, the default device " \
"will be used.") "will be used.")
/// \bug [String] size stuff should be on video !
#define ADEV_TEXT N_("Audio device name") #define ADEV_TEXT N_("Audio device name")
#define ADEV_LONGTEXT N_( \ #define ADEV_LONGTEXT N_( \
"Name of the audio device that will be used by the " \ "Name of the audio device that will be used by the " \
......
...@@ -63,6 +63,8 @@ static void Close( vlc_object_t * ); ...@@ -63,6 +63,8 @@ static void Close( vlc_object_t * );
#define PASS_TEXT N_("Password") #define PASS_TEXT N_("Password")
#define PASS_LONGTEXT N_("Password that will be " \ #define PASS_LONGTEXT N_("Password that will be " \
"requested to access the stream." ) "requested to access the stream." )
/// \bug [String] missing closing parenthesis
#define MIME_TEXT N_("Mime") #define MIME_TEXT N_("Mime")
#define MIME_LONGTEXT N_("MIME returned by the server (autodetected " \ #define MIME_LONGTEXT N_("MIME returned by the server (autodetected " \
"if not specified." ) "if not specified." )
......
...@@ -89,7 +89,7 @@ struct filter_sys_t ...@@ -89,7 +89,7 @@ struct filter_sys_t
vlc_module_begin(); vlc_module_begin();
set_category( CAT_INPUT ); set_category( CAT_INPUT );
set_subcategory( SUBCAT_INPUT_ACODEC ); set_subcategory( SUBCAT_INPUT_ACODEC );
set_shortname( _("DCA" ) ); set_shortname( "DCA" );
set_description( _("DTS Coherent Acoustics audio decoder") ); set_description( _("DTS Coherent Acoustics audio decoder") );
add_bool( "dts-dynrng", 1, NULL, DYNRNG_TEXT, DYNRNG_LONGTEXT, VLC_FALSE ); add_bool( "dts-dynrng", 1, NULL, DYNRNG_TEXT, DYNRNG_LONGTEXT, VLC_FALSE );
set_capability( "audio filter", 100 ); set_capability( "audio filter", 100 );
......
...@@ -96,6 +96,7 @@ vlc_module_begin(); ...@@ -96,6 +96,7 @@ vlc_module_begin();
N_("Tunnel RTSP and RTP over HTTP"), VLC_TRUE ); N_("Tunnel RTSP and RTP over HTTP"), VLC_TRUE );
add_integer( "rtsp-http-port", 80, NULL, add_integer( "rtsp-http-port", 80, NULL,
N_("HTTP tunnel port"), N_("HTTP tunnel port"),
/// \bug [String] Missing .
N_("Port to use for tunneling the RTSP/RTP over HTTP"), VLC_TRUE ); N_("Port to use for tunneling the RTSP/RTP over HTTP"), VLC_TRUE );
#endif #endif
add_integer( "rtsp-caching", 4 * DEFAULT_PTS_DELAY / 1000, NULL, add_integer( "rtsp-caching", 4 * DEFAULT_PTS_DELAY / 1000, NULL,
......
...@@ -44,6 +44,7 @@ ...@@ -44,6 +44,7 @@
static int Open ( vlc_object_t * ); static int Open ( vlc_object_t * );
static void Close ( vlc_object_t * ); static void Close ( vlc_object_t * );
/// \bug [String] missing .
#define NOISE_LONGTEXT N_("Enable noise reduction algorithm") #define NOISE_LONGTEXT N_("Enable noise reduction algorithm")
#define REVERB_LONGTEXT N_("Enable reverberation" ) #define REVERB_LONGTEXT N_("Enable reverberation" )
#define REVERB_LEVEL_LONGTEXT N_( "Reverberation level (from 0 " \ #define REVERB_LEVEL_LONGTEXT N_( "Reverberation level (from 0 " \
......
...@@ -334,6 +334,7 @@ static char *ppsz_align_descriptions[] = ...@@ -334,6 +334,7 @@ static char *ppsz_align_descriptions[] =
"pixels (1:1). If you have a 16:9 screen, you might need to change this " \ "pixels (1:1). If you have a 16:9 screen, you might need to change this " \
"to 4:3 in order to keep proportions.") "to 4:3 in order to keep proportions.")
/// \bug [String] Remove "this option"
#define SKIP_FRAMES_TEXT N_("Skip frames") #define SKIP_FRAMES_TEXT N_("Skip frames")
#define SKIP_FRAMES_LONGTEXT N_( \ #define SKIP_FRAMES_LONGTEXT N_( \
"This option enables framedropping on MPEG2 stream. Framedropping " \ "This option enables framedropping on MPEG2 stream. Framedropping " \
......
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