Commit b0639d94 authored by Clément Stenac's avatar Clément Stenac

String fixes

parent 7025a1e9
......@@ -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)." \
......
......@@ -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)." )
......
......@@ -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,
......
......@@ -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." )
......
......@@ -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." )
......
......@@ -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");
......
......@@ -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 " \
......
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