Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
b0639d94
Commit
b0639d94
authored
Apr 11, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
String fixes
parent
7025a1e9
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
15 additions
and
0 deletions
+15
-0
modules/access/http.c
modules/access/http.c
+1
-0
modules/access/pvr/pvr.c
modules/access/pvr/pvr.c
+1
-0
modules/audio_filter/param_eq.c
modules/audio_filter/param_eq.c
+5
-0
modules/codec/x264.c
modules/codec/x264.c
+4
-0
modules/control/netsync.c
modules/control/netsync.c
+2
-0
modules/demux/livedotcom.cpp
modules/demux/livedotcom.cpp
+1
-0
src/libvlc.h
src/libvlc.h
+1
-0
No files found.
modules/access/http.c
View file @
b0639d94
...
...
@@ -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)." \
...
...
modules/access/pvr/pvr.c
View file @
b0639d94
...
...
@@ -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)." )
...
...
modules/audio_filter/param_eq.c
View file @
b0639d94
...
...
@@ -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
,
...
...
modules/codec/x264.c
View file @
b0639d94
...
...
@@ -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." )
...
...
modules/control/netsync.c
View file @
b0639d94
...
...
@@ -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." )
...
...
modules/demux/livedotcom.cpp
View file @
b0639d94
...
...
@@ -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"
);
...
...
src/libvlc.h
View file @
b0639d94
...
...
@@ -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 " \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment