]> git.sesse.net Git - vlc/commitdiff
More strings
authorClément Stenac <zorglub@videolan.org>
Tue, 11 Apr 2006 13:17:20 +0000 (13:17 +0000)
committerClément Stenac <zorglub@videolan.org>
Tue, 11 Apr 2006 13:17:20 +0000 (13:17 +0000)
modules/access/dshow/dshow.cpp
modules/access_output/http.c
modules/audio_filter/converter/dtstofloat32.c
modules/demux/livedotcom.cpp
modules/demux/mod.c
src/libvlc.h

index dff0a563e07bde08b8ec375ffadb4f2e7f0fc5b2..d6806b3114b9afe222d5cbfcf4ca11658c211130 100644 (file)
@@ -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 " \
index 5c538b3f5ff8c609468d34d1a67f23f33e5f734f..b41bc318d1d6da9d154e0b126cdd7c43c56df915 100644 (file)
@@ -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." )
index 3377e64dd65e4eb90fb9c8238adab0a68bc5568e..1d7c79a1fffe22d84b6d17467c7e8eb5f5ee6864 100644 (file)
@@ -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 );
index 2b4aa26695ad1be461c6b36dfd0fc668ab48ac99..c34f19257a90823a28a102f58520b2bb2bc544fd 100644 (file)
@@ -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,
index e4309c5b554b411516bf927f0e93d2277855d64b..abd5bfeeb724aedc94b55da22e121a6800aa4182 100644 (file)
@@ -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 " \
index 8de9635e3b6cf9e0f728a844be67c0e80f4ca000..12a707df0de1b9b6b355e7f1eaed2bde64f2f057 100644 (file)
@@ -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 " \