Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
bcb8ad99
Commit
bcb8ad99
authored
Apr 13, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
String stuff
parent
3ac2dcd0
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
12 additions
and
1 deletion
+12
-1
modules/codec/x264.c
modules/codec/x264.c
+2
-1
modules/demux/mod.c
modules/demux/mod.c
+1
-0
modules/gui/macosx/equalizer.m
modules/gui/macosx/equalizer.m
+1
-0
modules/misc/freetype.c
modules/misc/freetype.c
+1
-0
modules/misc/msn.c
modules/misc/msn.c
+1
-0
modules/stream_out/standard.c
modules/stream_out/standard.c
+3
-0
modules/video_filter/mosaic.c
modules/video_filter/mosaic.c
+1
-0
modules/video_filter/motiondetect.c
modules/video_filter/motiondetect.c
+1
-0
modules/video_filter/osdmenu.c
modules/video_filter/osdmenu.c
+1
-0
No files found.
modules/codec/x264.c
View file @
bcb8ad99
...
...
@@ -90,7 +90,7 @@ static void Close( vlc_object_t * );
#define CABAC_LONGTEXT N_( "CABAC (Context-Adaptive Binary Arithmetic "\
"Coding). Slightly slows down encoding and decoding, but should save " \
"10-15% bitrate." )
/// \bug [String] Missing final dot
#define REF_TEXT N_("Number of reference frames")
#define REF_LONGTEXT N_( "Number of previous frames used as predictors. " \
"This is effective in Anime, but seems to make little difference in " \
...
...
@@ -168,6 +168,7 @@ static void Close( vlc_object_t * );
" - all : i4x4,p8x8,(i8x8),b8x8,p4x4\n" \
"(p4x4 requires p8x8. i8x8 requires 8x8dct).")
/// \bug [String] Extra space
#define DIRECT_PRED_TEXT N_("Direct MV prediction mode")
#define DIRECT_PRED_LONGTEXT N_( "Direct MV prediction mode. ")
...
...
modules/demux/mod.c
View file @
bcb8ad99
...
...
@@ -54,6 +54,7 @@ static void Close ( vlc_object_t * );
#define MEGABASS_LONGTEXT N_( "Enable megabass mode" )
#define MEGABASS_LEVEL_LONGTEXT N_("Megabass mode level (from 0 to 100, " \
"default value is 0)." )
/// \bug [String] Missing space after dot
#define MEGABASS_RANGE_LONGTEXT N_("Megabass mode cutoff frequency, in Hz." \
"This is the maximum frequency for which the megabass " \
"effect applies. Valid values are from 10 to 100 Hz" )
...
...
modules/gui/macosx/equalizer.m
View file @
bcb8ad99
...
...
@@ -140,6 +140,7 @@ static vlc_bool_t GetFiltersStatus( intf_thread_t *p_intf,
[
o_btn_equalizer
setToolTip
:
_NS
(
"Equalizer"
)];
[
o_ckb_2pass
setTitle
:
_NS
(
"2 Pass"
)];
[
o_ckb_2pass
setToolTip
:
_NS
(
"Apply the"
/// \bug [String] missing space
"equalizer filter twice. The effect will be sharper."
)];
[
o_ckb_enable
setTitle
:
_NS
(
"Enable"
)];
[
o_ckb_enable
setToolTip
:
_NS
(
"Enable the equalizer. Bands can be set "
...
...
modules/misc/freetype.c
View file @
bcb8ad99
...
...
@@ -108,6 +108,7 @@ static char *ppsz_sizes_text[] = { N_("Smaller"), N_("Small"), N_("Normal"),
#define YUVP_LONGTEXT N_("This renders the font using \"paletized YUV\". " \
"This option is only needed if you want to encode into DVB subtitles" )
#define EFFECT_TEXT N_("Font Effect")
/// \bug [String] Missing space
#define EFFECT_LONGTEXT N_("It is possible to apply effects to the rendered" \
"text to improve its readability." )
...
...
modules/misc/msn.c
View file @
bcb8ad99
...
...
@@ -60,6 +60,7 @@ static int SendToMSN( char * psz_msg );
* You need to enable the "What I'm Listening To" option in MSN.
*****************************************************************************/
#define FORMAT_DEFAULT "{0} - {1}"
/// \bug [String] MSN is useless
#define FORMAT_TEXT N_("MSN Title format string")
#define FORMAT_LONGTEXT N_("Format of the string to send to MSN " \
"{0} Artist, {1} Title, {2} Album. Defaults to \"Artist - Title\" ({0} - {1}).")
...
...
modules/stream_out/standard.c
View file @
bcb8ad99
...
...
@@ -37,12 +37,15 @@
* Module descriptor
*****************************************************************************/
#define ACCESS_TEXT N_("Output access method")
/// \bug [String] "Output method to use for the stream."
#define ACCESS_LONGTEXT N_( \
"This is the output access method that will be used." )
#define MUX_TEXT N_("Output muxer")
/// \bug [String] "Muxer to use for the stream."
#define MUX_LONGTEXT N_( \
"This is the muxer that will be used." )
#define DST_TEXT N_("Output destination")
/// \bug [String] "Destination (URL) to use for the stream."
#define DST_LONGTEXT N_( \
"This is the destination (URL) that will be used for the stream." )
#define NAME_TEXT N_("Session name")
...
...
modules/video_filter/mosaic.c
View file @
bcb8ad99
...
...
@@ -118,6 +118,7 @@ struct filter_sys_t
"automatically choose the best number of rows and columns. " \
"fixed: use the user-defined number of rows and columns.")
/// \bug [String] missing closing parenthesis
#define ROWS_TEXT N_("Number of rows")
#define ROWS_LONGTEXT N_("Number of image rows in the mosaic (only used if "\
"positionning method is set to \"fixed\"." )
...
...
modules/video_filter/motiondetect.c
View file @
bcb8ad99
...
...
@@ -55,6 +55,7 @@ static int SendEvents ( vlc_object_t *, char const *,
#define DESC_TEXT N_("Description file")
#define DESC_LONGTEXT N_("A file containing a simple playlist")
#define HISTORY_TEXT N_("History parameter")
/// \bug [String] typo
#define HISTORY_LONGTEXT N_("The umber of frames used for detection.")
vlc_module_begin
();
...
...
modules/video_filter/osdmenu.c
View file @
bcb8ad99
...
...
@@ -40,6 +40,7 @@
/* FIXME: Future extension make the definition file in XML format. */
#define OSD_FILE_TEXT N_("Configuration file")
/// \bug [String] missing dot
#define OSD_FILE_LONGTEXT N_( \
"Configuration file for the OSD Menu" )
#define OSD_PATH_TEXT N_("Path to OSD menu images")
...
...
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