Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
e621ea03
Commit
e621ea03
authored
Aug 22, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix/improve some strings
parent
e0b2c38d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
11 deletions
+11
-11
modules/access/alsa.c
modules/access/alsa.c
+2
-2
modules/access/avio.h
modules/access/avio.h
+1
-1
modules/control/netsync.c
modules/control/netsync.c
+6
-6
src/libvlc-module.c
src/libvlc-module.c
+2
-2
No files found.
modules/access/alsa.c
View file @
e621ea03
...
...
@@ -86,8 +86,8 @@ static void DemuxClose( vlc_object_t * );
#define CFG_PREFIX "alsa-"
vlc_module_begin
()
set_shortname
(
N_
(
"A
lsa
"
)
)
set_description
(
N_
(
"A
lsa
audio capture input"
)
)
set_shortname
(
N_
(
"A
LSA
"
)
)
set_description
(
N_
(
"A
LSA
audio capture input"
)
)
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_ACCESS
)
set_help
(
HELP_TEXT
)
...
...
modules/access/avio.h
View file @
e621ea03
...
...
@@ -31,7 +31,7 @@ int OpenAvio (vlc_object_t *);
void
CloseAvio
(
vlc_object_t
*
);
#define AVIO_MODULE \
set_shortname(N_("
Avio"))
\
set_shortname(N_("
FFmpeg"))
\
set_description(N_("FFmpeg access") ) \
set_category(CAT_INPUT) \
set_subcategory(SUBCAT_INPUT_ACCESS) \
...
...
modules/control/netsync.c
View file @
e621ea03
/*****************************************************************************
* netsync.c: synchroni
s
ation between several network clients.
* netsync.c: synchroni
z
ation between several network clients.
*****************************************************************************
* Copyright (C) 2004-2009 the VideoLAN team
* $Id$
...
...
@@ -56,20 +56,20 @@ static void Close(vlc_object_t *);
#define NETSYNC_TEXT N_("Network master clock")
#define NETSYNC_LONGTEXT N_("When set then " \
"
this vlc instance shall dictate its clock for synchronisation
" \
"
This VLC instance shall dictate its clock for synchronization
" \
"over clients listening on the masters network ip address")
#define MIP_TEXT N_("Master server ip address")
#define MIP_LONGTEXT N_("The IP address of " \
"
the network master clock to use for clock synchronis
ation.")
"
The network master clock to use for clock synchroniz
ation.")
#define NETSYNC_TIMEOUT_TEXT N_("UDP timeout (in ms)")
#define NETSYNC_TIMEOUT_LONGTEXT N_("
Amount
of time (in ms) " \
"
to wait before aborting network reception of data
.")
#define NETSYNC_TIMEOUT_LONGTEXT N_("
Length
of time (in ms) " \
"
until aborting data reception
.")
vlc_module_begin
()
set_shortname
(
N_
(
"Network Sync"
))
set_description
(
N_
(
"Network synchroni
s
ation"
))
set_description
(
N_
(
"Network synchroni
z
ation"
))
set_category
(
CAT_ADVANCED
)
set_subcategory
(
SUBCAT_ADVANCED_MISC
)
...
...
src/libvlc-module.c
View file @
e621ea03
...
...
@@ -642,8 +642,8 @@ static const char *const ppsz_pos_descriptions[] =
#define CLOCK_JITTER_TEXT N_("Clock jitter")
#define CLOCK_JITTER_LONGTEXT N_( \
"
It tells the clock algorithms what is the maximal input jitter that
" \
"
is considered valid and can be compensated (in milliseconds)
" )
"
This defines the maximum input delay jitter that the synchronization
" \
"
algorithms should try to compensate (in milliseconds).
" )
#define NETSYNC_TEXT N_("Network synchronisation" )
#define NETSYNC_LONGTEXT N_( "This allows you to remotely " \
...
...
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