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
1f50361f
Commit
1f50361f
authored
Jan 28, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix plugin strings translation
parent
5f1e2f74
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
18 additions
and
19 deletions
+18
-19
modules/access/rtp/rtp.c
modules/access/rtp/rtp.c
+2
-2
modules/access/zip/zipstream.c
modules/access/zip/zipstream.c
+2
-2
modules/audio_filter/resampler/bandlimited.c
modules/audio_filter/resampler/bandlimited.c
+1
-1
modules/codec/aes3.c
modules/codec/aes3.c
+1
-1
modules/control/globalhotkeys/win32.c
modules/control/globalhotkeys/win32.c
+2
-2
modules/control/globalhotkeys/x11.c
modules/control/globalhotkeys/x11.c
+2
-2
modules/misc/stats/stats.c
modules/misc/stats/stats.c
+5
-5
modules/video_filter/colorthres.c
modules/video_filter/colorthres.c
+2
-2
modules/video_filter/postproc.c
modules/video_filter/postproc.c
+1
-2
No files found.
modules/access/rtp/rtp.c
View file @
1f50361f
...
...
@@ -81,8 +81,8 @@ static void Close (vlc_object_t *);
* Module descriptor
*/
vlc_module_begin
()
set_shortname
(
_
(
"RTP"
))
set_description
(
_
(
"Real-Time Protocol (RTP) input"
))
set_shortname
(
N
_
(
"RTP"
))
set_description
(
N
_
(
"Real-Time Protocol (RTP) input"
))
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_DEMUX
)
set_capability
(
"access_demux"
,
0
)
...
...
modules/access/zip/zipstream.c
View file @
1f50361f
...
...
@@ -45,12 +45,12 @@ vlc_module_begin()
set_shortname
(
"Zip"
)
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_STREAM_FILTER
)
set_description
(
_
(
"Zip files filter"
)
)
set_description
(
N
_
(
"Zip files filter"
)
)
set_capability
(
"stream_filter"
,
1
)
set_callbacks
(
StreamOpen
,
StreamClose
)
add_submodule
()
set_subcategory
(
SUBCAT_INPUT_ACCESS
)
set_description
(
_
(
"Zip access"
)
)
set_description
(
N
_
(
"Zip access"
)
)
set_capability
(
"access"
,
0
)
add_shortcut
(
"unzip"
)
add_shortcut
(
"zip"
)
...
...
modules/audio_filter/resampler/bandlimited.c
View file @
1f50361f
...
...
@@ -100,7 +100,7 @@ vlc_module_begin ()
set_callbacks
(
Create
,
Close
)
add_submodule
()
set_description
(
_
(
"Audio filter for band-limited interpolation resampling"
)
)
set_description
(
N
_
(
"Audio filter for band-limited interpolation resampling"
)
)
set_capability
(
"audio filter2"
,
20
)
set_callbacks
(
OpenFilter
,
CloseFilter
)
vlc_module_end
()
...
...
modules/codec/aes3.c
View file @
1f50361f
...
...
@@ -45,7 +45,7 @@ vlc_module_begin ()
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_ACODEC
)
set_description
(
_
(
"AES3/SMPTE 302M audio decoder"
)
)
set_description
(
N
_
(
"AES3/SMPTE 302M audio decoder"
)
)
set_capability
(
"decoder"
,
100
)
set_callbacks
(
OpenDecoder
,
Close
)
...
...
modules/control/globalhotkeys/win32.c
View file @
1f50361f
...
...
@@ -43,10 +43,10 @@ LRESULT CALLBACK WMHOTKEYPROC( HWND, UINT, WPARAM, LPARAM );
* Module descriptor
*****************************************************************************/
vlc_module_begin
()
set_shortname
(
_
(
"Global Hotkeys"
)
)
set_shortname
(
N
_
(
"Global Hotkeys"
)
)
set_category
(
CAT_INTERFACE
)
set_subcategory
(
SUBCAT_INTERFACE_HOTKEYS
)
set_description
(
_
(
"Global Hotkeys interface"
)
)
set_description
(
N
_
(
"Global Hotkeys interface"
)
)
set_capability
(
"interface"
,
0
)
set_callbacks
(
Open
,
Close
)
vlc_module_end
()
...
...
modules/control/globalhotkeys/x11.c
View file @
1f50361f
...
...
@@ -44,10 +44,10 @@ static void Close( vlc_object_t *p_this );
* Module descriptor
*****************************************************************************/
vlc_module_begin
()
set_shortname
(
_
(
"Global Hotkeys"
)
)
set_shortname
(
N
_
(
"Global Hotkeys"
)
)
set_category
(
CAT_INTERFACE
)
set_subcategory
(
SUBCAT_INTERFACE_HOTKEYS
)
set_description
(
_
(
"Global Hotkeys interface"
)
)
set_description
(
N
_
(
"Global Hotkeys interface"
)
)
set_capability
(
"interface"
,
0
)
set_callbacks
(
Open
,
Close
)
vlc_module_end
()
...
...
modules/misc/stats/stats.c
View file @
1f50361f
...
...
@@ -45,24 +45,24 @@
*****************************************************************************/
vlc_module_begin
()
set_shortname
(
_
(
"Stats"
))
set_description
(
_
(
"Stats encoder function"
)
)
set_shortname
(
N
_
(
"Stats"
))
set_description
(
N
_
(
"Stats encoder function"
)
)
set_capability
(
"encoder"
,
0
)
add_shortcut
(
"stats"
)
set_callbacks
(
OpenEncoder
,
CloseEncoder
)
add_submodule
()
set_section
(
N_
(
"Stats decoder"
),
NULL
)
set_description
(
_
(
"Stats decoder function"
)
)
set_description
(
N
_
(
"Stats decoder function"
)
)
set_capability
(
"decoder"
,
0
)
set_callbacks
(
OpenDecoder
,
CloseDecoder
)
add_submodule
()
set_section
(
N_
(
"Stats demux"
),
NULL
)
set_description
(
_
(
"Stats demux function"
)
)
set_description
(
N
_
(
"Stats demux function"
)
)
set_capability
(
"demux"
,
0
)
set_callbacks
(
OpenDemux
,
CloseDemux
)
add_submodule
()
set_section
(
N_
(
"Stats video output"
),
NULL
)
set_description
(
_
(
"Stats video output function"
)
)
set_description
(
N
_
(
"Stats video output function"
)
)
set_capability
(
"video output"
,
0
)
set_callbacks
(
OpenVideo
,
NULL
)
vlc_module_end
()
...
...
modules/video_filter/colorthres.c
View file @
1f50361f
...
...
@@ -74,9 +74,9 @@ vlc_module_begin ()
COLOR_LONGTEXT
,
false
)
change_integer_list
(
pi_color_values
,
ppsz_color_descriptions
,
NULL
)
add_integer
(
CFG_PREFIX
"saturationthres"
,
20
,
NULL
,
_
(
"Saturaton threshold"
),
""
,
false
)
N
_
(
"Saturaton threshold"
),
""
,
false
)
add_integer
(
CFG_PREFIX
"similaritythres"
,
15
,
NULL
,
_
(
"Similarity threshold"
),
""
,
false
)
N
_
(
"Similarity threshold"
),
""
,
false
)
set_callbacks
(
Create
,
Destroy
)
vlc_module_end
()
...
...
modules/video_filter/postproc.c
View file @
1f50361f
...
...
@@ -63,8 +63,7 @@ static int PPNameCallback( vlc_object_t *, char const *,
"better looking pictures." )
#define NAME_TEXT N_("FFmpeg post processing filter chains")
/* defined by libpostproc */
#define NAME_LONGTEXT pp_help
#define NAME_LONGTEXT NAME_TEXT
#define FILTER_PREFIX "postproc-"
...
...
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