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
a386875e
Commit
a386875e
authored
Oct 09, 2006
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i18n fix. Thanks to Marian Hikanik for pointing the bugs.
parent
1c5ad67d
Changes
43
Hide whitespace changes
Inline
Side-by-side
Showing
43 changed files
with
59 additions
and
60 deletions
+59
-60
modules/access/cdda/cdda.c
modules/access/cdda/cdda.c
+1
-1
modules/access/dvb/access.c
modules/access/dvb/access.c
+1
-1
modules/access/screen/screen.c
modules/access/screen/screen.c
+1
-1
modules/access/vcdx/vcd.c
modules/access/vcdx/vcd.c
+1
-1
modules/access_output/dummy.c
modules/access_output/dummy.c
+1
-1
modules/access_output/file.c
modules/access_output/file.c
+1
-1
modules/access_output/http.c
modules/access_output/http.c
+1
-1
modules/access_output/udp.c
modules/access_output/udp.c
+1
-1
modules/audio_filter/channel_mixer/dolby.c
modules/audio_filter/channel_mixer/dolby.c
+1
-1
modules/audio_filter/channel_mixer/headphone.c
modules/audio_filter/channel_mixer/headphone.c
+1
-1
modules/audio_filter/equalizer.c
modules/audio_filter/equalizer.c
+1
-1
modules/audio_filter/normvol.c
modules/audio_filter/normvol.c
+1
-1
modules/audio_filter/param_eq.c
modules/audio_filter/param_eq.c
+1
-1
modules/audio_output/file.c
modules/audio_output/file.c
+1
-1
modules/audio_output/portaudio.c
modules/audio_output/portaudio.c
+1
-1
modules/codec/svcdsub.c
modules/codec/svcdsub.c
+5
-6
modules/demux/subtitle.c
modules/demux/subtitle.c
+6
-6
modules/gui/pda/pda.c
modules/gui/pda/pda.c
+1
-1
modules/gui/wxwidgets/dialogs.cpp
modules/gui/wxwidgets/dialogs.cpp
+1
-1
modules/gui/wxwidgets/dialogs/preferences_widgets.cpp
modules/gui/wxwidgets/dialogs/preferences_widgets.cpp
+1
-1
modules/gui/wxwidgets/extrapanel.cpp
modules/gui/wxwidgets/extrapanel.cpp
+2
-2
modules/gui/wxwidgets/wxwidgets.cpp
modules/gui/wxwidgets/wxwidgets.cpp
+1
-1
modules/misc/growl.c
modules/misc/growl.c
+1
-1
modules/misc/logger.c
modules/misc/logger.c
+1
-1
modules/misc/msn.c
modules/misc/msn.c
+1
-1
modules/misc/notify.c
modules/misc/notify.c
+1
-1
modules/video_filter/adjust.c
modules/video_filter/adjust.c
+1
-1
modules/video_filter/clone.c
modules/video_filter/clone.c
+1
-1
modules/video_filter/crop.c
modules/video_filter/crop.c
+1
-1
modules/video_filter/deinterlace.c
modules/video_filter/deinterlace.c
+1
-1
modules/video_filter/distort.c
modules/video_filter/distort.c
+1
-1
modules/video_filter/invert.c
modules/video_filter/invert.c
+1
-1
modules/video_filter/logo.c
modules/video_filter/logo.c
+1
-1
modules/video_filter/magnify.c
modules/video_filter/magnify.c
+1
-1
modules/video_filter/marq.c
modules/video_filter/marq.c
+1
-1
modules/video_filter/mosaic.c
modules/video_filter/mosaic.c
+2
-2
modules/video_filter/motiondetect.c
modules/video_filter/motiondetect.c
+1
-1
modules/video_filter/osdmenu.c
modules/video_filter/osdmenu.c
+2
-2
modules/video_filter/time.c
modules/video_filter/time.c
+1
-1
modules/video_filter/transform.c
modules/video_filter/transform.c
+1
-1
modules/video_filter/wall.c
modules/video_filter/wall.c
+1
-1
modules/video_output/snapshot.c
modules/video_output/snapshot.c
+1
-1
src/interface/interface.c
src/interface/interface.c
+5
-5
No files found.
modules/access/cdda/cdda.c
View file @
a386875e
...
...
@@ -112,7 +112,7 @@ vlc_module_begin();
add_usage_hint
(
N_
(
"cddax://[device-or-file][@[T]track]"
)
);
set_description
(
_
(
"Compact Disc Digital Audio (CD-DA) input"
)
);
set_capability
(
"access2"
,
10
/* compare with priority of cdda */
);
set_shortname
(
N
_
(
"Audio Compact Disc"
));
set_shortname
(
_
(
"Audio Compact Disc"
));
set_callbacks
(
CDDAOpen
,
CDDAClose
);
add_shortcut
(
"cddax"
);
add_shortcut
(
"cd"
);
...
...
modules/access/dvb/access.c
View file @
a386875e
...
...
@@ -180,7 +180,7 @@ static void Close( vlc_object_t *p_this );
vlc_module_begin
();
set_shortname
(
_
(
"DVB"
)
);
set_
description
(
N
_
(
"DVB input with v4l2 support"
)
);
set_
shortname
(
_
(
"DVB input with v4l2 support"
)
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ACCESS
);
...
...
modules/access/screen/screen.c
View file @
a386875e
...
...
@@ -60,7 +60,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"Screen Input"
)
);
set_shortname
(
N
_
(
"Screen"
));
set_shortname
(
_
(
"Screen"
));
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ACCESS
);
...
...
modules/access/vcdx/vcd.c
View file @
a386875e
...
...
@@ -92,7 +92,7 @@ int E_(BlocksPerReadCallback) ( vlc_object_t *p_this, const char *psz_name,
*****************************************************************************/
vlc_module_begin
();
set_shortname
(
N
_
(
"(Super) Video CD"
));
set_shortname
(
_
(
"(Super) Video CD"
));
set_description
(
_
(
"Video CD (VCD 1.0, 1.1, 2.0, SVCD, HQVCD) input"
)
);
add_usage_hint
(
N_
(
"vcdx://[device-or-file][@{P,S,T}num]"
)
);
add_shortcut
(
"vcdx"
);
...
...
modules/access_output/dummy.c
View file @
a386875e
...
...
@@ -38,7 +38,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"Dummy stream output"
)
);
set_shortname
(
N
_
(
"Dummy"
));
set_shortname
(
_
(
"Dummy"
));
set_capability
(
"sout access"
,
0
);
set_category
(
CAT_SOUT
);
set_subcategory
(
SUBCAT_SOUT_ACO
);
...
...
modules/access_output/file.c
View file @
a386875e
...
...
@@ -64,7 +64,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"File stream output"
)
);
set_shortname
(
N
_
(
"File"
));
set_shortname
(
_
(
"File"
));
set_capability
(
"sout access"
,
50
);
set_category
(
CAT_SOUT
);
set_subcategory
(
SUBCAT_SOUT_ACO
);
...
...
modules/access_output/http.c
View file @
a386875e
...
...
@@ -92,7 +92,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"HTTP stream output"
)
);
set_capability
(
"sout access"
,
0
);
set_shortname
(
N
_
(
"HTTP"
)
);
set_shortname
(
_
(
"HTTP"
)
);
add_shortcut
(
"http"
);
add_shortcut
(
"https"
);
add_shortcut
(
"mmsh"
);
...
...
modules/access_output/udp.c
View file @
a386875e
...
...
@@ -95,7 +95,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"UDP stream output"
)
);
set_shortname
(
N
_
(
"UDP"
)
);
set_shortname
(
_
(
"UDP"
)
);
set_category
(
CAT_SOUT
);
set_subcategory
(
SUBCAT_SOUT_ACO
);
add_integer
(
SOUT_CFG_PREFIX
"caching"
,
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
VLC_TRUE
);
...
...
modules/audio_filter/channel_mixer/dolby.c
View file @
a386875e
...
...
@@ -44,7 +44,7 @@ static void DoWork ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_description
(
N
_
(
"Simple decoder for Dolby Surround encoded streams"
)
);
set_description
(
_
(
"Simple decoder for Dolby Surround encoded streams"
)
);
set_shortname
(
_
(
"Dolby Surround decoder"
)
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ACODEC
);
...
...
modules/audio_filter/channel_mixer/headphone.c
View file @
a386875e
...
...
@@ -69,7 +69,7 @@ static void DoWork ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
"processed by this filter. Enabling this setting is not recommended.")
vlc_module_begin
();
set_description
(
N
_
(
"Headphone virtual spatialization effect"
)
);
set_description
(
_
(
"Headphone virtual spatialization effect"
)
);
set_shortname
(
_
(
"Headphone effect"
)
);
set_category
(
CAT_AUDIO
);
set_subcategory
(
SUBCAT_AUDIO_AFILTER
);
...
...
modules/audio_filter/equalizer.c
View file @
a386875e
...
...
@@ -68,7 +68,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
();
set_description
(
_
(
"Equalizer with 10 bands"
)
);
set_shortname
(
N
_
(
"Equalizer"
)
);
set_shortname
(
_
(
"Equalizer"
)
);
set_capability
(
"audio filter"
,
0
);
set_category
(
CAT_AUDIO
);
set_subcategory
(
SUBCAT_AUDIO_AFILTER
);
...
...
modules/audio_filter/normvol.c
View file @
a386875e
...
...
@@ -80,7 +80,7 @@ typedef struct aout_filter_sys_t
vlc_module_begin
();
set_description
(
_
(
"Volume normalizer"
)
);
set_shortname
(
N
_
(
"Volume normalizer"
)
);
set_shortname
(
_
(
"Volume normalizer"
)
);
set_category
(
CAT_AUDIO
);
set_subcategory
(
SUBCAT_AUDIO_AFILTER
);
add_shortcut
(
"volnorm"
);
...
...
modules/audio_filter/param_eq.c
View file @
a386875e
...
...
@@ -47,7 +47,7 @@ static void DoWork( aout_instance_t *, aout_filter_t *,
vlc_module_begin
();
set_description
(
_
(
"Parametric Equalizer"
)
);
set_shortname
(
N
_
(
"Parametric Equalizer"
)
);
set_shortname
(
_
(
"Parametric Equalizer"
)
);
set_capability
(
"audio filter"
,
0
);
set_category
(
CAT_AUDIO
);
set_subcategory
(
SUBCAT_AUDIO_AFILTER
);
...
...
modules/audio_output/file.c
View file @
a386875e
...
...
@@ -108,7 +108,7 @@ static int format_int[] = { VLC_FOURCC('u','8',' ',' '),
#define FILE_LONGTEXT N_("File to which the audio samples will be written to.")
vlc_module_begin
();
set_description
(
N
_
(
"File audio output"
)
);
set_description
(
_
(
"File audio output"
)
);
set_shortname
(
_
(
"File"
)
);
set_category
(
CAT_AUDIO
);
set_subcategory
(
SUBCAT_AUDIO_AOUT
);
...
...
modules/audio_output/portaudio.c
View file @
a386875e
...
...
@@ -109,7 +109,7 @@ static int PAOpenStream( aout_instance_t * );
vlc_module_begin
();
set_shortname
(
"PortAudio"
);
set_
description
(
N
_
(
"PORTAUDIO audio output"
)
);
set_
shortname
(
_
(
"PORTAUDIO audio output"
)
);
set_category
(
CAT_AUDIO
);
set_subcategory
(
SUBCAT_AUDIO_AOUT
);
add_integer
(
"portaudio-device"
,
0
,
NULL
,
...
...
modules/codec/svcdsub.c
View file @
a386875e
...
...
@@ -39,17 +39,16 @@ static int DecoderOpen ( vlc_object_t * );
static
int
PacketizerOpen
(
vlc_object_t
*
);
static
void
DecoderClose
(
vlc_object_t
*
);
#define DEBUG_TEXT \
"Enable debug"
#define DEBUG_TEXT N_("Enable debug")
#define DEBUG_LONGTEXT
N_(
\
"This integer when viewed in binary is a debugging mask\n" \
#define DEBUG_LONGTEXT \
N_(
"This integer when viewed in binary is a debugging mask\n" \
"calls 1\n" \
"packet assembly info 2\n")
"packet assembly info 2\n"
)
vlc_module_begin
();
set_description
(
_
(
"Philips OGT (SVCD subtitle) decoder"
)
);
set_shortname
(
N_
(
"SVCD subtitles"
)
);
set_shortname
(
_
(
"SVCD subtitles"
)
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_SCODEC
);
set_capability
(
"decoder"
,
50
);
...
...
modules/demux/subtitle.c
View file @
a386875e
...
...
@@ -44,15 +44,15 @@ static int Open ( vlc_object_t *p_this );
static
void
Close
(
vlc_object_t
*
p_this
);
#define SUB_DELAY_LONGTEXT \
"Apply a delay to all subtitles (in 1/10s, eg 100 means 10s)."
N_("Apply a delay to all subtitles (in 1/10s, eg 100 means 10s).")
#define SUB_FPS_LONGTEXT \
"Override the normal frames per second settings. " \
"This will only work with MicroDVD and SubRIP (SRT) subtitles."
N_(
"Override the normal frames per second settings. " \
"This will only work with MicroDVD and SubRIP (SRT) subtitles."
)
#define SUB_TYPE_LONGTEXT \
"Force the subtiles format. Valid values are : \"microdvd\", \"subrip\",
" \
"\"ssa1\", \"ssa2-4\", \"ass\", \"vplayer\" " \
N_("Force the subtiles format. Valid values are : \"microdvd\",
" \
"\"s
ubrip\", \"s
sa1\", \"ssa2-4\", \"ass\", \"vplayer\" " \
"\"sami\", \"dvdsubtitle\" and \"auto\" (meaning autodetection, this " \
"should always work)."
"should always work)."
)
static
char
*
ppsz_sub_type
[]
=
{
"auto"
,
"microdvd"
,
"subrip"
,
"subviewer"
,
"ssa1"
,
...
...
modules/gui/pda/pda.c
View file @
a386875e
...
...
@@ -63,7 +63,7 @@ gint E_(GtkModeManage) ( intf_thread_t * p_intf );
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_
description
(
N
_
(
"PDA Linux Gtk2+ interface"
)
);
set_
shortname
(
_
(
"PDA Linux Gtk2+ interface"
)
);
set_category
(
CAT_INTERFACE
);
set_subcategory
(
SUBCAT_INTERFACE_MAIN
);
// add_bool( "pda-autoplayfile", 1, GtkAutoPlayFile, AUTOPLAYFILE_TEXT, AUTOPLAYFILE_LONGTEXT, VLC_TRUE );
...
...
modules/gui/wxwidgets/dialogs.cpp
View file @
a386875e
...
...
@@ -471,7 +471,7 @@ void DialogsProvider::OnOpenDirectory( wxCommandEvent& event )
}
if
(
p_dir_dialog
==
NULL
)
p_dir_dialog
=
new
wxDirDialog
(
NULL
);
p_dir_dialog
=
new
wxDirDialog
(
NULL
,
wxU
(
_
(
"Select a directory"
))
);
if
(
p_dir_dialog
&&
p_dir_dialog
->
ShowModal
()
==
wxID_OK
)
{
...
...
modules/gui/wxwidgets/dialogs/preferences_widgets.cpp
View file @
a386875e
...
...
@@ -573,7 +573,7 @@ StringListConfigControl::StringListConfigControl( vlc_object_t *p_this,
{
wxButton
*
button
=
new
wxButton
(
this
,
wxID_HIGHEST
+
i
,
wxU
(
p_item
->
ppsz_action_text
[
i
]
)
);
wxU
(
_
(
p_item
->
ppsz_action_text
[
i
])
)
);
sizer
->
Add
(
button
,
0
,
wxALIGN_CENTER_VERTICAL
|
wxALL
,
5
);
}
...
...
modules/gui/wxwidgets/extrapanel.cpp
View file @
a386875e
...
...
@@ -482,7 +482,7 @@ wxPanel *ExtraPanel::EqzPanel( wxWindow *parent )
top_sizer
->
Add
(
eq_restoredefaults_button
,
0
,
wxALL
,
2
);
top_sizer
->
Add
(
0
,
0
,
1
,
wxALL
,
2
);
smooth_text
=
new
wxStaticText
(
panel
,
-
1
,
wxU
(
"Smooth :"
));
smooth_text
=
new
wxStaticText
(
panel
,
-
1
,
wxU
(
_
(
"Smooth :"
)
));
smooth_text
->
SetToolTip
(
wxU
(
SMOOTH_TIP
)
);
top_sizer
->
Add
(
smooth_text
,
0
,
wxALL
,
2
);
...
...
@@ -513,7 +513,7 @@ wxPanel *ExtraPanel::EqzPanel( wxWindow *parent )
eq_gridsizer
->
Add
(
band_sliders
[
i
],
1
,
wxEXPAND
|
wxALL
,
2
);
}
preamp_text
=
new
wxStaticText
(
panel
,
-
1
,
wx
T
(
"Preamp
\n
12.0dB"
)
);
preamp_text
=
new
wxStaticText
(
panel
,
-
1
,
wx
U
(
_
(
"Preamp
\n
12.0dB"
)
)
);
wxFont
font
=
preamp_text
->
GetFont
();
font
.
SetPointSize
(
7
);
preamp_text
->
SetFont
(
font
);
...
...
modules/gui/wxwidgets/wxwidgets.cpp
View file @
a386875e
...
...
@@ -162,7 +162,7 @@ vlc_module_begin();
#endif
add_bool
(
"wx-labels"
,
0
,
NULL
,
LABEL_TEXT
,
LABEL_LONGTEXT
,
VLC_TRUE
);
add_string
(
"wx-config-last"
,
NULL
,
NULL
,
"last config"
,
"last config"
,
VLC_TRUE
);
N_
(
"last config"
),
N_
(
"last config"
)
,
VLC_TRUE
);
change_autosave
();
add_deprecated
(
"wxwin-config-last"
,
VLC_FALSE
);
/*Deprecated since 0.8.4*/
...
...
modules/misc/growl.c
View file @
a386875e
...
...
@@ -70,7 +70,7 @@ static int CheckAndSend( vlc_object_t *p_this, uint8_t* p_data, int i_offset );
vlc_module_begin
();
set_category
(
CAT_INTERFACE
);
set_subcategory
(
SUBCAT_INTERFACE_CONTROL
);
set_shortname
(
N
_
(
"Growl"
)
);
set_shortname
(
_
(
"Growl"
)
);
set_description
(
_
(
"Growl Notification Plugin"
)
);
add_string
(
"growl-server"
,
SERVER_DEFAULT
,
NULL
,
...
...
modules/misc/logger.c
View file @
a386875e
...
...
@@ -126,7 +126,7 @@ static char *mode_list_text[] = { N_("Text"), "HTML"
#endif
vlc_module_begin
();
set_shortname
(
N
_
(
"Logging"
)
);
set_shortname
(
_
(
"Logging"
)
);
set_description
(
_
(
"File logging"
)
);
set_category
(
CAT_ADVANCED
);
...
...
modules/misc/msn.c
View file @
a386875e
...
...
@@ -68,7 +68,7 @@ static int SendToMSN( char * psz_msg );
vlc_module_begin
();
set_category
(
CAT_INTERFACE
);
set_subcategory
(
SUBCAT_INTERFACE_CONTROL
);
set_shortname
(
N
_
(
"MSN"
)
);
set_shortname
(
_
(
"MSN"
)
);
set_description
(
_
(
"MSN Now-Playing"
)
);
add_string
(
"msn-format"
,
FORMAT_DEFAULT
,
NULL
,
...
...
modules/misc/notify.c
View file @
a386875e
...
...
@@ -58,7 +58,7 @@ static int Notify( vlc_object_t *, const char * );
vlc_module_begin
();
set_category
(
CAT_INTERFACE
);
set_subcategory
(
SUBCAT_INTERFACE_CONTROL
);
set_shortname
(
N
_
(
"Notify"
)
);
set_shortname
(
_
(
"Notify"
)
);
set_description
(
_
(
"LibNotify Notification Plugin"
)
);
add_integer
(
"notify-timeout"
,
4000
,
NULL
,
...
...
modules/video_filter/adjust.c
View file @
a386875e
...
...
@@ -75,7 +75,7 @@ static int SendEvents( vlc_object_t *, char const *,
vlc_module_begin
();
set_description
(
_
(
"Image properties filter"
)
);
set_shortname
(
N
_
(
"Image adjust"
));
set_shortname
(
_
(
"Image adjust"
));
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
set_capability
(
"video filter"
,
0
);
...
...
modules/video_filter/clone.c
View file @
a386875e
...
...
@@ -63,7 +63,7 @@ static int SendEvents( vlc_object_t *, char const *,
vlc_module_begin
();
set_description
(
_
(
"Clone video filter"
)
);
set_capability
(
"video filter"
,
0
);
set_shortname
(
N
_
(
"Clone"
));
set_shortname
(
_
(
"Clone"
));
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
...
...
modules/video_filter/crop.c
View file @
a386875e
...
...
@@ -59,7 +59,7 @@ static int SendEvents( vlc_object_t *, char const *,
vlc_module_begin
();
set_description
(
_
(
"Crop video filter"
)
);
set_shortname
(
N
_
(
"Crop"
));
set_shortname
(
_
(
"Crop"
));
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
set_capability
(
"video filter"
,
0
);
...
...
modules/video_filter/deinterlace.c
View file @
a386875e
...
...
@@ -119,7 +119,7 @@ static char *mode_list_text[] = { N_("Discard"), N_("Blend"), N_("Mean"),
vlc_module_begin
();
set_description
(
_
(
"Deinterlacing video filter"
)
);
set_shortname
(
N
_
(
"Deinterlace"
));
set_shortname
(
_
(
"Deinterlace"
));
set_capability
(
"video filter"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
...
...
modules/video_filter/distort.c
View file @
a386875e
...
...
@@ -79,7 +79,7 @@ static char *mode_list_text[] = { N_("Wave"), N_("Ripple"), N_("Gradient"),
vlc_module_begin
();
set_description
(
_
(
"Distort video filter"
)
);
set_shortname
(
N
_
(
"Distortion"
));
set_shortname
(
_
(
"Distortion"
));
set_capability
(
"video filter"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
...
...
modules/video_filter/invert.c
View file @
a386875e
...
...
@@ -50,7 +50,7 @@ static int SendEvents( vlc_object_t *, char const *,
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"Invert video filter"
)
);
set_shortname
(
N
_
(
"Color inversion"
));
set_shortname
(
_
(
"Color inversion"
));
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
set_capability
(
"video filter"
,
0
);
...
...
modules/video_filter/logo.c
View file @
a386875e
...
...
@@ -98,7 +98,7 @@ static char *ppsz_pos_descriptions[] =
vlc_module_begin
();
set_description
(
_
(
"Logo video filter"
)
);
set_capability
(
"video filter"
,
0
);
set_shortname
(
N
_
(
"Logo overlay"
)
);
set_shortname
(
_
(
"Logo overlay"
)
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_SUBPIC
);
add_shortcut
(
"logo"
);
...
...
modules/video_filter/magnify.c
View file @
a386875e
...
...
@@ -57,7 +57,7 @@ static int MouseEvent ( vlc_object_t *, char const *,
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"Magnify/Zoom interactive video filter"
)
);
set_shortname
(
N
_
(
"Magnify"
));
set_shortname
(
_
(
"Magnify"
));
set_capability
(
"video filter"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
...
...
modules/video_filter/marq.c
View file @
a386875e
...
...
@@ -112,7 +112,7 @@ static char *ppsz_pos_descriptions[] =
*****************************************************************************/
vlc_module_begin
();
set_capability
(
"sub filter"
,
0
);
set_shortname
(
N
_
(
"Marquee"
));
set_shortname
(
_
(
"Marquee"
));
set_callbacks
(
CreateFilter
,
DestroyFilter
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_SUBPIC
);
...
...
modules/video_filter/mosaic.c
View file @
a386875e
...
...
@@ -174,8 +174,8 @@ static char *ppsz_align_descriptions[] =
vlc_module_begin
();
set_description
(
N
_
(
"Mosaic video sub filter"
)
);
set_shortname
(
N
_
(
"Mosaic"
)
);
set_description
(
_
(
"Mosaic video sub filter"
)
);
set_shortname
(
_
(
"Mosaic"
)
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_SUBPIC
);
set_capability
(
"sub filter"
,
0
);
...
...
modules/video_filter/motiondetect.c
View file @
a386875e
...
...
@@ -60,7 +60,7 @@ static int SendEvents ( vlc_object_t *, char const *,
vlc_module_begin
();
set_description
(
_
(
"Motion detect video filter"
)
);
set_shortname
(
N
_
(
"Motion detect"
));
set_shortname
(
_
(
"Motion detect"
));
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
set_capability
(
"video filter"
,
0
);
...
...
modules/video_filter/osdmenu.c
View file @
a386875e
...
...
@@ -115,8 +115,8 @@ vlc_module_begin();
OSD_UPDATE_LONGTEXT
,
VLC_TRUE
);
set_capability
(
"sub filter"
,
100
);
set_
description
(
N
_
(
"On Screen Display menu"
)
);
set_shortname
(
N
_
(
"OSD menu"
)
);
set_
shortname
(
_
(
"On Screen Display menu"
)
);
set_shortname
(
_
(
"OSD menu"
)
);
add_shortcut
(
"osdmenu"
);
/*
set_category( CAT_VIDEO );
...
...
modules/video_filter/time.c
View file @
a386875e
...
...
@@ -104,7 +104,7 @@ static char *ppsz_pos_descriptions[] =
*****************************************************************************/
vlc_module_begin
();
set_capability
(
"sub filter"
,
0
);
set_shortname
(
N
_
(
"Time overlay"
));
set_shortname
(
_
(
"Time overlay"
));
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_SUBPIC
);
set_callbacks
(
CreateFilter
,
DestroyFilter
);
...
...
modules/video_filter/transform.c
View file @
a386875e
...
...
@@ -64,7 +64,7 @@ static char *type_list_text[] = { N_("Rotate by 90 degrees"),
vlc_module_begin
();
set_description
(
_
(
"Video transformation filter"
)
);
set_shortname
(
N
_
(
"Transformation"
));
set_shortname
(
_
(
"Transformation"
));
set_capability
(
"video filter"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
...
...
modules/video_filter/wall.c
View file @
a386875e
...
...
@@ -68,7 +68,7 @@ static int SendEvents( vlc_object_t *, char const *,
vlc_module_begin
();
set_description
(
_
(
"Wall video filter"
)
);
set_shortname
(
N
_
(
"Image wall"
));
set_shortname
(
_
(
"Image wall"
));
set_capability
(
"video filter"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
...
...
modules/video_output/snapshot.c
View file @
a386875e
...
...
@@ -73,7 +73,7 @@ static void Display ( vout_thread_t *, picture_t * );
vlc_module_begin
(
);
set_description
(
_
(
"Snapshot module"
)
);
set_shortname
(
N
_
(
"Snapshot"
)
);
set_shortname
(
_
(
"Snapshot"
)
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VOUT
);
...
...
src/interface/interface.c
View file @
a386875e
...
...
@@ -358,7 +358,7 @@ static void RunInterface( intf_thread_t *p_intf )
if
(
!
strcmp
(
p_module
->
psz_object_name
,
ppsz_parser
[
0
]
)
)
{
val
.
psz_string
=
ppsz_parser
[
0
];
text
.
psz_string
=
ppsz_parser
[
1
]
;
text
.
psz_string
=
_
(
ppsz_parser
[
1
])
;
var_Change
(
p_intf
,
"intf-switch"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
break
;
...
...
@@ -377,13 +377,13 @@ static void RunInterface( intf_thread_t *p_intf )
val
.
psz_string
=
"rc"
;
text
.
psz_string
=
"Console"
;
var_Change
(
p_intf
,
"intf-add"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
psz_string
=
"telnet"
;
text
.
psz_string
=
"Telnet Interface"
;
val
.
psz_string
=
"telnet"
;
text
.
psz_string
=
_
(
"Telnet Interface"
)
;
var_Change
(
p_intf
,
"intf-add"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
psz_string
=
"http"
;
text
.
psz_string
=
"Web Interface"
;
val
.
psz_string
=
"http"
;
text
.
psz_string
=
_
(
"Web Interface"
)
;
var_Change
(
p_intf
,
"intf-add"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
psz_string
=
"logger"
;
text
.
psz_string
=
"Debug logging"
;
val
.
psz_string
=
"logger"
;
text
.
psz_string
=
_
(
"Debug logging"
)
;
var_Change
(
p_intf
,
"intf-add"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
val
.
psz_string
=
"gestures"
;
text
.
psz_string
=
"Mouse Gestures"
;
val
.
psz_string
=
"gestures"
;
text
.
psz_string
=
_
(
"Mouse Gestures"
)
;
var_Change
(
p_intf
,
"intf-add"
,
VLC_VAR_ADDCHOICE
,
&
val
,
&
text
);
var_AddCallback
(
p_intf
,
"intf-add"
,
AddIntfCallback
,
NULL
);
...
...
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