From 79f9f30aba459bede4709275b10336089161ead0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Cl=C3=A9ment=20Stenac?= Date: Tue, 11 Apr 2006 13:17:20 +0000 Subject: [PATCH] More strings --- modules/access/dshow/dshow.cpp | 1 + modules/access_output/http.c | 2 ++ modules/audio_filter/converter/dtstofloat32.c | 2 +- modules/demux/livedotcom.cpp | 1 + modules/demux/mod.c | 1 + src/libvlc.h | 1 + 6 files changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/access/dshow/dshow.cpp b/modules/access/dshow/dshow.cpp index dff0a563e0..d6806b3114 100644 --- a/modules/access/dshow/dshow.cpp +++ b/modules/access/dshow/dshow.cpp @@ -86,6 +86,7 @@ static char *ppsz_tuner_input_text[] = "Name of the video device that will be used by the " \ "DirectShow plugin. If you don't specify anything, the default device " \ "will be used.") +/// \bug [String] size stuff should be on video ! #define ADEV_TEXT N_("Audio device name") #define ADEV_LONGTEXT N_( \ "Name of the audio device that will be used by the " \ diff --git a/modules/access_output/http.c b/modules/access_output/http.c index 5c538b3f5f..b41bc318d1 100644 --- a/modules/access_output/http.c +++ b/modules/access_output/http.c @@ -63,6 +63,8 @@ static void Close( vlc_object_t * ); #define PASS_TEXT N_("Password") #define PASS_LONGTEXT N_("Password that will be " \ "requested to access the stream." ) + +/// \bug [String] missing closing parenthesis #define MIME_TEXT N_("Mime") #define MIME_LONGTEXT N_("MIME returned by the server (autodetected " \ "if not specified." ) diff --git a/modules/audio_filter/converter/dtstofloat32.c b/modules/audio_filter/converter/dtstofloat32.c index 3377e64dd6..1d7c79a1ff 100644 --- a/modules/audio_filter/converter/dtstofloat32.c +++ b/modules/audio_filter/converter/dtstofloat32.c @@ -89,7 +89,7 @@ struct filter_sys_t vlc_module_begin(); set_category( CAT_INPUT ); set_subcategory( SUBCAT_INPUT_ACODEC ); - set_shortname( _("DCA" ) ); + set_shortname( "DCA" ); set_description( _("DTS Coherent Acoustics audio decoder") ); add_bool( "dts-dynrng", 1, NULL, DYNRNG_TEXT, DYNRNG_LONGTEXT, VLC_FALSE ); set_capability( "audio filter", 100 ); diff --git a/modules/demux/livedotcom.cpp b/modules/demux/livedotcom.cpp index 2b4aa26695..c34f19257a 100644 --- a/modules/demux/livedotcom.cpp +++ b/modules/demux/livedotcom.cpp @@ -96,6 +96,7 @@ vlc_module_begin(); N_("Tunnel RTSP and RTP over HTTP"), VLC_TRUE ); add_integer( "rtsp-http-port", 80, NULL, N_("HTTP tunnel port"), + /// \bug [String] Missing . N_("Port to use for tunneling the RTSP/RTP over HTTP"), VLC_TRUE ); #endif add_integer( "rtsp-caching", 4 * DEFAULT_PTS_DELAY / 1000, NULL, diff --git a/modules/demux/mod.c b/modules/demux/mod.c index e4309c5b55..abd5bfeeb7 100644 --- a/modules/demux/mod.c +++ b/modules/demux/mod.c @@ -44,6 +44,7 @@ static int Open ( vlc_object_t * ); static void Close ( vlc_object_t * ); +/// \bug [String] missing . #define NOISE_LONGTEXT N_("Enable noise reduction algorithm") #define REVERB_LONGTEXT N_("Enable reverberation" ) #define REVERB_LEVEL_LONGTEXT N_( "Reverberation level (from 0 " \ diff --git a/src/libvlc.h b/src/libvlc.h index 8de9635e3b..12a707df0d 100644 --- a/src/libvlc.h +++ b/src/libvlc.h @@ -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 " \ "to 4:3 in order to keep proportions.") +/// \bug [String] Remove "this option" #define SKIP_FRAMES_TEXT N_("Skip frames") #define SKIP_FRAMES_LONGTEXT N_( \ "This option enables framedropping on MPEG2 stream. Framedropping " \ -- 2.39.2