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
77439e5c
Commit
77439e5c
authored
Mar 30, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2nd control review (except telnet)
parent
f1e29cf4
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
18 deletions
+21
-18
modules/control/gestures.c
modules/control/gestures.c
+1
-1
modules/control/http/http.c
modules/control/http/http.c
+10
-7
modules/control/netsync.c
modules/control/netsync.c
+4
-4
modules/control/ntservice.c
modules/control/ntservice.c
+4
-4
modules/control/showintf.c
modules/control/showintf.c
+1
-1
modules/control/telnet.c
modules/control/telnet.c
+1
-1
No files found.
modules/control/gestures.c
View file @
77439e5c
...
...
@@ -80,7 +80,7 @@ static void RunIntf ( intf_thread_t *p_intf );
#define BUTTON_TEXT N_( "Trigger button" )
#define BUTTON_LONGTEXT N_( \
"
You can set the trigger button for mouse gestures here
." )
"
Trigger button for mouse gestures
." )
static
char
*
button_list
[]
=
{
"left"
,
"middle"
,
"right"
};
static
char
*
button_list_text
[]
=
{
N_
(
"Left"
),
N_
(
"Middle"
),
N_
(
"Right"
)
};
...
...
modules/control/http/http.c
View file @
77439e5c
...
...
@@ -33,26 +33,29 @@ static void Close( vlc_object_t * );
#define HOST_TEXT N_( "Host address" )
#define HOST_LONGTEXT N_( \
"Address and port the http interface will bind to" )
"Address and port the HTTP interface will listen on. It defaults to " \
"all network interfaces (0.0.0.0)." \
" If you want the telnet interface to be available only on the local " \
"machine, enter 127.0.0.1" )
#define SRC_TEXT N_( "Source directory" )
#define SRC_LONGTEXT N_( "Source directory" )
#define CHARSET_TEXT N_( "Charset" )
#define CHARSET_LONGTEXT N_( \
"Charset declared in Content-Type header (default UTF-8)" )
"Charset declared in Content-Type header (default UTF-8)
.
" )
#define HANDLERS_TEXT N_( "Handlers" )
#define HANDLERS_LONGTEXT N_( \
"List of handler extensions and executable paths (for instance: " \
"php=/usr/bin/php,pl=/usr/bin/perl)" )
"php=/usr/bin/php,pl=/usr/bin/perl)
.
" )
#define CERT_TEXT N_( "Certificate file" )
#define CERT_LONGTEXT N_( "HTTP interface x509 PEM certificate file " \
"(enables SSL)" )
"(enables SSL)
.
" )
#define KEY_TEXT N_( "Private key file" )
#define KEY_LONGTEXT N_( "HTTP interface x509 PEM private key file" )
#define KEY_LONGTEXT N_( "HTTP interface x509 PEM private key file
.
" )
#define CA_TEXT N_( "Root CA file" )
#define CA_LONGTEXT N_( "HTTP interface x509 PEM trusted root CA " \
"certificates file" )
"certificates file
.
" )
#define CRL_TEXT N_( "CRL file" )
#define CRL_LONGTEXT N_( "HTTP interace Certificates Revocation List file" )
#define CRL_LONGTEXT N_( "HTTP interace Certificates Revocation List file
.
" )
vlc_module_begin
();
set_shortname
(
_
(
"HTTP"
));
...
...
modules/control/netsync.c
View file @
77439e5c
...
...
@@ -56,12 +56,12 @@ static void Close ( vlc_object_t * );
static
mtime_t
GetClockRef
(
intf_thread_t
*
,
mtime_t
);
#define NETSYNC_TEXT N_( "Act as master
for network synchronisation
" )
#define NETSYNC_LONGTEXT N_( "S
pecify if this client s
hould " \
"act as the master client for the network synchronisation
.
" )
#define NETSYNC_TEXT N_( "Act as master" )
#define NETSYNC_LONGTEXT N_( "Should " \
"act as the master client for the network synchronisation
?
" )
#define MIP_TEXT N_( "Master client ip address" )
#define MIP_LONGTEXT N_( "
Specify the ip
address of " \
#define MIP_LONGTEXT N_( "
IP
address of " \
"the master client used for the network synchronisation." )
vlc_module_begin
();
...
...
modules/control/ntservice.c
View file @
77439e5c
...
...
@@ -38,21 +38,21 @@ static void Close ( vlc_object_t * );
#define INSTALL_TEXT N_( "Install Windows Service" )
#define INSTALL_LONGTEXT N_( \
"I
f enabled the interface will i
nstall the Service and exit." )
"Install the Service and exit." )
#define UNINSTALL_TEXT N_( "Uninstall Windows Service" )
#define UNINSTALL_LONGTEXT N_( \
"
If enabled the interface will u
ninstall the Service and exit." )
"
U
ninstall the Service and exit." )
#define NAME_TEXT N_( "Display name of the Service" )
#define NAME_LONGTEXT N_( \
"Change the display name of the Service." )
#define OPTIONS_TEXT N_("Configuration options")
#define OPTIONS_LONGTEXT N_( \
"
Specify c
onfiguration options that will be " \
"
C
onfiguration options that will be " \
"used by the Service (eg. --foo=bar --no-foobar). It should be specified "\
"at install time so the Service is properly configured.")
#define EXTRAINTF_TEXT N_("Extra interface modules")
#define EXTRAINTF_LONGTEXT N_( \
"
Select a
dditional interfaces spawned by the " \
"
A
dditional interfaces spawned by the " \
"Service. It should be specified at install time so the Service is " \
"properly configured. Use a comma separated list of interface modules. " \
"(common values are: logger, sap, rc, http)")
...
...
modules/control/showintf.c
View file @
77439e5c
...
...
@@ -60,7 +60,7 @@ static int MouseEvent( vlc_object_t *, char const *,
* Module descriptor
*****************************************************************************/
#define THRESHOLD_TEXT N_( "Threshold" )
#define THRESHOLD_LONGTEXT N_( "Height of the zone triggering the interface" )
#define THRESHOLD_LONGTEXT N_( "Height of the zone triggering the interface
.
" )
vlc_module_begin
();
set_shortname
(
"Showintf"
);
...
...
modules/control/telnet.c
View file @
77439e5c
...
...
@@ -72,7 +72,7 @@ static void Close( vlc_object_t * );
#define TELNETHOST_TEXT N_( "Telnet interface listen host" )
#define TELNETHOST_LONGTEXT N_( "This is the host on which the telnet " \
"interface will listen. It defaults to all network interfaces (0.0.0.0)." \
" I you want the telnet interface to be available only on the local " \
" I
f
you want the telnet interface to be available only on the local " \
"machine, enter 127.0.0.1" )
#define TELNETPORT_TEXT N_( "Telnet interface port" )
#define TELNETPORT_LONGTEXT N_( "This is the TCP port on which the telnet " \
...
...
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