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
12efe797
Commit
12efe797
authored
Oct 10, 2006
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forward port [17015] + a few more i18n fix
parent
dc8b128a
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
12 additions
and
12 deletions
+12
-12
modules/access/dvb/access.c
modules/access/dvb/access.c
+1
-1
modules/audio_output/hd1000a.cpp
modules/audio_output/hd1000a.cpp
+1
-1
modules/audio_output/portaudio.c
modules/audio_output/portaudio.c
+1
-1
modules/gui/pda/pda.c
modules/gui/pda/pda.c
+1
-1
modules/video_filter/gradient.c
modules/video_filter/gradient.c
+1
-1
modules/video_filter/opencv_example.cpp
modules/video_filter/opencv_example.cpp
+1
-1
modules/video_filter/opencv_wrapper.c
modules/video_filter/opencv_wrapper.c
+1
-1
modules/video_filter/osdmenu.c
modules/video_filter/osdmenu.c
+1
-1
modules/video_filter/panoramix.c
modules/video_filter/panoramix.c
+1
-1
modules/video_filter/psychedelic.c
modules/video_filter/psychedelic.c
+1
-1
modules/video_filter/ripple.c
modules/video_filter/ripple.c
+1
-1
modules/video_filter/wave.c
modules/video_filter/wave.c
+1
-1
No files found.
modules/access/dvb/access.c
View file @
12efe797
...
...
@@ -181,7 +181,7 @@ static void Close( vlc_object_t *p_this );
vlc_module_begin
();
set_shortname
(
_
(
"DVB"
)
);
set_
shortname
(
_
(
"DVB input with v4l2 support"
)
);
set_
description
(
_
(
"DVB input with v4l2 support"
)
);
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_ACCESS
);
...
...
modules/audio_output/hd1000a.cpp
View file @
12efe797
...
...
@@ -73,7 +73,7 @@ static void InterleaveS16( int16_t *, int16_t * );
*****************************************************************************/
vlc_module_begin
();
set_shortname
(
"Roku HD1000"
);
set_description
(
N
_
(
"Roku HD1000 audio output"
)
);
set_description
(
_
(
"Roku HD1000 audio output"
)
);
set_capability
(
"audio output"
,
100
);
set_category
(
CAT_AUDIO
);
set_subcategory
(
SUBCAT_AUDIO_AOUT
);
...
...
modules/audio_output/portaudio.c
View file @
12efe797
...
...
@@ -109,7 +109,7 @@ static int PAOpenStream( aout_instance_t * );
vlc_module_begin
();
set_shortname
(
"PortAudio"
);
set_
shortname
(
_
(
"PORTAUDIO audio output"
)
);
set_
description
(
_
(
"PORTAUDIO audio output"
)
);
set_category
(
CAT_AUDIO
);
set_subcategory
(
SUBCAT_AUDIO_AOUT
);
add_integer
(
"portaudio-device"
,
0
,
NULL
,
...
...
modules/gui/pda/pda.c
View file @
12efe797
...
...
@@ -63,7 +63,7 @@ gint E_(GtkModeManage) ( intf_thread_t * p_intf );
* Module descriptor
*****************************************************************************/
vlc_module_begin
();
set_
shortname
(
_
(
"PDA Linux Gtk2+ interface"
)
);
set_
description
(
_
(
"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/video_filter/gradient.c
View file @
12efe797
...
...
@@ -71,7 +71,7 @@ static char *mode_list_text[] = { N_("Gradient"), N_("Edge"), N_("Hough") };
vlc_module_begin
();
set_description
(
_
(
"Gradient video filter"
)
);
set_shortname
(
N
_
(
"Gradient"
));
set_shortname
(
_
(
"Gradient"
));
set_capability
(
"video filter2"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
...
...
modules/video_filter/opencv_example.cpp
View file @
12efe797
...
...
@@ -61,7 +61,7 @@ static picture_t *Filter( filter_t *, picture_t * );
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"OpenCV face detection example filter"
)
);
set_shortname
(
N
_
(
"OpenCV example"
));
set_shortname
(
_
(
"OpenCV example"
));
set_capability
(
"opencv example"
,
1
);
add_shortcut
(
"opencv_example"
);
...
...
modules/video_filter/opencv_wrapper.c
View file @
12efe797
...
...
@@ -77,7 +77,7 @@ static char *verbosity_list_text[] = { N_("Show only errors"),
vlc_module_begin
();
set_description
(
_
(
"OpenCV video filter wrapper"
)
);
set_shortname
(
N
_
(
"OpenCV"
));
set_shortname
(
_
(
"OpenCV"
));
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
set_capability
(
"video filter"
,
0
);
...
...
modules/video_filter/osdmenu.c
View file @
12efe797
...
...
@@ -115,7 +115,7 @@ vlc_module_begin();
OSD_UPDATE_LONGTEXT
,
VLC_TRUE
);
set_capability
(
"sub filter"
,
100
);
set_
shortname
(
_
(
"On Screen Display menu"
)
);
set_
description
(
_
(
"On Screen Display menu"
)
);
set_shortname
(
_
(
"OSD menu"
)
);
add_shortcut
(
"osdmenu"
);
/*
...
...
modules/video_filter/panoramix.c
View file @
12efe797
...
...
@@ -91,7 +91,7 @@ static int SendEvents( vlc_object_t *, char const *,
vlc_module_begin
();
set_description
(
_
(
"Panoramix: wall with overlap video filter"
)
);
set_shortname
(
N
_
(
"Panoramix"
));
set_shortname
(
_
(
"Panoramix"
));
set_capability
(
"video filter"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
...
...
modules/video_filter/psychedelic.c
View file @
12efe797
...
...
@@ -49,7 +49,7 @@ static picture_t *Filter( filter_t *, picture_t * );
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"Psychedelic video filter"
)
);
set_shortname
(
N
_
(
"Psychedelic"
));
set_shortname
(
_
(
"Psychedelic"
));
set_capability
(
"video filter2"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
...
...
modules/video_filter/ripple.c
View file @
12efe797
...
...
@@ -48,7 +48,7 @@ static picture_t *Filter( filter_t *, picture_t * );
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"Ripple video filter"
)
);
set_shortname
(
N
_
(
"Ripple"
));
set_shortname
(
_
(
"Ripple"
));
set_capability
(
"video filter2"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
...
...
modules/video_filter/wave.c
View file @
12efe797
...
...
@@ -48,7 +48,7 @@ static picture_t *Filter( filter_t *, picture_t * );
*****************************************************************************/
vlc_module_begin
();
set_description
(
_
(
"Wave video filter"
)
);
set_shortname
(
N
_
(
"Wave"
));
set_shortname
(
_
(
"Wave"
));
set_capability
(
"video filter2"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
...
...
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