]> git.sesse.net Git - vlc/commitdiff
String fixes
authorClément Stenac <zorglub@videolan.org>
Tue, 11 Apr 2006 09:27:46 +0000 (09:27 +0000)
committerClément Stenac <zorglub@videolan.org>
Tue, 11 Apr 2006 09:27:46 +0000 (09:27 +0000)
modules/access/http.c
modules/access/pvr/pvr.c
modules/audio_filter/param_eq.c
modules/codec/x264.c
modules/control/netsync.c
modules/demux/livedotcom.cpp
src/libvlc.h

index 29be758225f827dafc56104423ba30dd6f9cb4b5..8eed919201588b601085bd9e615ace3f401b2b6b 100644 (file)
@@ -64,6 +64,7 @@ static void Close( vlc_object_t * );
     "Automatically try to reconnect to the stream in case of a sudden " \
     "disconnect." )
 
+/// \bug missing space before you should
 #define CONTINUOUS_TEXT N_("Continuous stream")
 #define CONTINUOUS_LONGTEXT N_("Read a file that is " \
     "being constantly updated (for example, a JPG file on a server)." \
index 7373793f5f59817535ce0781d856fcd3e38d39ae..8b7676198cf894d558ecc13885de07a1e5823485 100644 (file)
@@ -86,6 +86,7 @@ static void Close( vlc_object_t * );
 #define BITRATE_PEAK_TEXT N_( "Bitrate peak" )
 #define BITRATE_PEAK_LONGTEXT N_( "Peak bitrate in VBR mode." )
 
+/// \bug extra parenthesis
 #define BITRATE_MODE_TEXT N_( "Bitrate mode)" )
 #define BITRATE_MODE_LONGTEXT N_( "Bitrate mode to use (VBR or CBR)." )
 
index dbd47df704bf8a0fe66283d286c87df4a18a55f4..57f1564a6f2175bca09baff1faf12199f0a19fce 100644 (file)
@@ -53,22 +53,27 @@ vlc_module_begin();
     set_subcategory( SUBCAT_AUDIO_AFILTER );
 
     add_float( "param-eq-lowf", 100, NULL, N_("Low freq (Hz)"),NULL, VLC_FALSE );
+    /// \bug Db -> dB
     add_float_with_range( "param-eq-lowgain", 0, -20.0, 20.0, NULL,
                           N_("Low freq gain (Db)"), NULL,VLC_FALSE );
     add_float( "param-eq-highf", 10000, NULL, N_("High freq (Hz)"),NULL, VLC_FALSE );
+    /// \bug Db -> dB
     add_float_with_range( "param-eq-highgain", 0, -20.0, 20.0, NULL,
                           N_("High freq gain (Db)"), NULL,VLC_FALSE );
     add_float( "param-eq-f1", 300, NULL, N_("Freq 1 (Hz)"),NULL, VLC_FALSE );
+    /// \bug Db -> dB
     add_float_with_range( "param-eq-gain1", 0, -20.0, 20.0, NULL,
                           N_("Freq 1 gain (Db)"), NULL,VLC_FALSE );
     add_float_with_range( "param-eq-q1", 3, 0.1, 100.0, NULL,
                           N_("Freq 1 Q"), NULL,VLC_FALSE );
     add_float( "param-eq-f2", 1000, NULL, N_("Freq 2 (Hz)"),NULL, VLC_FALSE );
+    /// \bug Db -> dB
     add_float_with_range( "param-eq-gain2", 0, -20.0, 20.0, NULL,
                           N_("Freq 2 gain (Db)"), NULL,VLC_FALSE );
     add_float_with_range( "param-eq-q2", 3, 0.1, 100.0, NULL,
                           N_("Freq 2 Q"), NULL,VLC_FALSE );
     add_float( "param-eq-f3", 3000, NULL, N_("Freq 3 (Hz)"),NULL, VLC_FALSE );
+    /// \bug Db -> dB
     add_float_with_range( "param-eq-gain3", 0, -20.0, 20.0, NULL,
                           N_("Freq 3 gain (Db)"), NULL,VLC_FALSE );
     add_float_with_range( "param-eq-q3", 3, 0.1, 100.0, NULL,
index 1a89104e641309ac05c398976e54b504f22fdcde..f1aa616af670f53bbd8c057b44282e9984b6bbfb 100644 (file)
@@ -71,10 +71,12 @@ static void Close( vlc_object_t * );
 #define BFRAMES_LONGTEXT N_( "Number of consecutive B-frames between I and " \
     "P-frames. (1 to 16)" )
 
+/// \bug [String] extra space
 #define B_ADAPT_TEXT N_("Adaptive B-frame decision")
 #define B_ADAPT_LONGTEXT N_( "Force the specified number of " \
     "consecutive B-frames to be used, except possibly before an I-frame. " )
 
+/// \bug [String] extra space
 #define B_BIAS_TEXT N_("B-frames usage")
 #define B_BIAS_LONGTEXT N_( "Bias the choice to use B-frames. Positive values " \
     "cause more B-frames, negative values cause less B-frames. " )
@@ -105,6 +107,7 @@ static void Close( vlc_object_t * );
     "Lower values result in better fidelity, but higher bitrates. 26 is a " \
     "good default value. From 0 to 51. 0 means lossless" )
 
+/// \bug [String] missing point
 #define CRF_TEXT N_("Quality-based VBR")
 #define CRF_LONGTEXT N_( "1-pass Quality-based VBR. From 0 to 51" )
 
@@ -112,6 +115,7 @@ static void Close( vlc_object_t * );
 #define QPMIN_LONGTEXT N_( "Minimum quantizer, 15/35 seems to be a useful " \
     "range." )
 
+/// \bug [String] typo ? Why doesn't it work in po ?
 #define QPMAX_TEXT N_("Max QP")
 #define QPMAX_LONGTEXT N_( "Maximum quantizer parameter." )
 
index 6aeb4b14f7db2482f05054f82ce0944e9ae9862b..5280814a4f535825f865264dcba2b0ad3cc0294c 100644 (file)
@@ -56,10 +56,12 @@ static void Close   ( vlc_object_t * );
 
 static mtime_t GetClockRef( intf_thread_t *, mtime_t );
 
+/// \bug [String] This string is BAD.
 #define NETSYNC_TEXT N_( "Act as master" )
 #define NETSYNC_LONGTEXT N_( "Should " \
   "act as the master client for the network synchronisation?" )
 
+/// \bug [String] This string is BAD.
 #define MIP_TEXT N_( "Master client ip address" )
 #define MIP_LONGTEXT N_( "IP address of " \
   "the master client used for the network synchronisation." )
index 95d6aa318c787c84a7e337fc1662f3dc434486e6..2b4aa26695ad1be461c6b36dfd0fc668ab48ac99 100644 (file)
@@ -69,6 +69,7 @@ static void Close( vlc_object_t * );
     "for communication. In this mode you cannot connect to normal RTSP servers." )
 
 vlc_module_begin();
+    /// \bug [String] s,live555.com,live555
     set_description( _("RTP/RTSP/SDP demuxer (using Live555.com)" ) );
     set_capability( "demux2", 50 );
     set_shortname( "RTP/RTSP");
index 48067b5bed1d1c4c88b60b85acd706ccd2e782a7..8de9635e3b6cf9e0f728a844be67c0e80f4ca000 100644 (file)
@@ -501,6 +501,7 @@ static char *ppsz_clock_descriptions[] =
 #define TEXTRENDERER_LONGTEXT N_( \
     "VLC normally uses Freetype for rendering, but this allows you to use svg for instance.")
 
+/// \bug typo arbitraty
 #define SUB_FILTER_TEXT N_("Subpictures filter module")
 #define SUB_FILTER_LONGTEXT N_( \
     "This adds so-called \"subpicture filters\". These filters overlay " \