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
0af0de20
Commit
0af0de20
authored
Mar 30, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Access strings (Refs:#438)
parent
70855de9
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
28 deletions
+32
-28
modules/access_filter/record.c
modules/access_filter/record.c
+1
-1
modules/access_filter/timeshift.c
modules/access_filter/timeshift.c
+2
-2
modules/access_output/http.c
modules/access_output/http.c
+10
-9
modules/access_output/shout.c
modules/access_output/shout.c
+14
-11
modules/access_output/udp.c
modules/access_output/udp.c
+5
-5
No files found.
modules/access_filter/record.c
View file @
0af0de20
...
...
@@ -42,7 +42,7 @@
#define RECORD_PATH_TXT N_("Record directory")
#define RECORD_PATH_LONGTXT N_( \
"
Allows you to specify the directory where the record will be stored
" )
"
Directory where the record will be stored.
" )
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
...
...
modules/access_filter/timeshift.c
View file @
0af0de20
...
...
@@ -42,8 +42,8 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
#define GRANULARITY_TEXT N_("Timeshift granularity")
#define GRANULARITY_LONGTEXT N_( "
Size of the temporary files use to store
" \
"th
e timeshifted stream
." )
#define GRANULARITY_LONGTEXT N_( "
This is the size of the temporary files
" \
"th
a will be used to store the timeshifted streams
." )
#define DIR_TEXT N_("Timeshift directory")
#define DIR_LONGTEXT N_( "Directory used to store the timeshift temporary " \
"files." )
...
...
modules/access_output/http.c
View file @
0af0de20
...
...
@@ -58,32 +58,33 @@ static void Close( vlc_object_t * );
#define SOUT_CFG_PREFIX "sout-http-"
#define USER_TEXT N_("Username")
#define USER_LONGTEXT N_("
Allows you to give a u
ser name that will be " \
#define USER_LONGTEXT N_("
U
ser name that will be " \
"requested to access the stream." )
#define PASS_TEXT N_("Password")
#define PASS_LONGTEXT N_("
Allows you to give a p
assword that will be " \
#define PASS_LONGTEXT N_("
P
assword that will be " \
"requested to access the stream." )
#define MIME_TEXT N_("Mime")
#define MIME_LONGTEXT N_("Allows you to give the mime returned by the server." )
#define MIME_LONGTEXT N_("MIME returned by the server (autodetected " \
"if not specified." )
#define CERT_TEXT N_( "Certificate file" )
#define CERT_LONGTEXT N_( "Path to the x509 PEM certificate file that will "\
"be used
by the HTTP/SSL stream output
" )
"be used
for HTTPS.
" )
#define KEY_TEXT N_( "Private key file" )
#define KEY_LONGTEXT N_( "Path to the x509 PEM private key file that will " \
" be used
by the HTTP/SSL stream output
. Leave " \
" be used
for HTTPS
. Leave " \
"empty if you don't have one." )
#define CA_TEXT N_( "Root CA file" )
#define CA_LONGTEXT N_( "Path to the x509 PEM trusted root CA certificates " \
"(certificate authority) file that will be used
by
" \
"
the HTTP/SSL stream output
. Leave empty if you " \
"(certificate authority) file that will be used
for
" \
"
HTTPS
. Leave empty if you " \
"don't have one." )
#define CRL_TEXT N_( "CRL file" )
#define CRL_LONGTEXT N_( "Path to the x509 PEM Certificates Revocation List " \
"file that will be
HTTP/SSL stream output
. Leave " \
"file that will be
used for SSL
. Leave " \
"empty if you don't have one." )
#define BONJOUR_TEXT N_( "Advertise with Bonjour")
#define BONJOUR_LONGTEXT N_( "Advertise the stream with the Bonjour protocol" )
#define BONJOUR_LONGTEXT N_( "Advertise the stream with the Bonjour protocol
.
" )
vlc_module_begin
();
...
...
modules/access_output/shout.c
View file @
0af0de20
...
...
@@ -55,28 +55,31 @@ static void Close( vlc_object_t * );
#define SOUT_CFG_PREFIX "sout-shout-"
#define NAME_TEXT N_("Stream-name")
#define NAME_LONGTEXT N_("The name this stream/channel will get on the icecast server." )
#define NAME_TEXT N_("Stream name")
#define NAME_LONGTEXT N_("Name to give to this stream/channel on the " \
"icecast server." )
#define DESCRIPTION_TEXT N_("Stream
-
description")
#define DESCRIPTION_LONGTEXT N_("
A description of the stream content. (Information about
" \
"your channel)
." )
#define DESCRIPTION_TEXT N_("Stream
description")
#define DESCRIPTION_LONGTEXT N_("
Description of the stream content or
" \
"information about your channel
." )
#define MP3_TEXT N_("Stream MP3")
#define MP3_LONGTEXT N_("Normally you have to feed the shoutcast module with Ogg streams. " \
"This option allows you to feed MP3 streams instead, so you can " \
"forward MP3 streams to the icecast server." )
#define MP3_LONGTEXT N_("You normally have to feed the shoutcast module " \
"with Ogg streams. It is also possible to stream " \
"MP3 instead, so you can "\
"forward MP3 streams to the icecast server." )
vlc_module_begin
();
set_description
(
_
(
"
libshout (icecast)
output"
)
);
set_shortname
(
"Shout"
);
set_description
(
_
(
"
IceCAST
output"
)
);
set_shortname
(
"Shout
cast
"
);
set_capability
(
"sout access"
,
50
);
set_category
(
CAT_SOUT
);
set_subcategory
(
SUBCAT_SOUT_ACO
);
add_shortcut
(
"shout"
);
add_string
(
SOUT_CFG_PREFIX
"name"
,
"VLC media player - Live stream"
,
NULL
,
NAME_TEXT
,
NAME_LONGTEXT
,
VLC_FALSE
);
add_string
(
SOUT_CFG_PREFIX
"description"
,
"Live stream from VLC media player. "
\
add_string
(
SOUT_CFG_PREFIX
"description"
,
"Live stream from VLC media player. "
\
"http://www.videolan.org/vlc"
,
NULL
,
DESCRIPTION_TEXT
,
DESCRIPTION_LONGTEXT
,
VLC_FALSE
);
add_bool
(
SOUT_CFG_PREFIX
"mp3"
,
VLC_FALSE
,
NULL
,
...
...
modules/access_output/udp.c
View file @
0af0de20
...
...
@@ -74,21 +74,21 @@ static void Close( vlc_object_t * );
#define CACHING_TEXT N_("Caching value (ms)")
#define CACHING_LONGTEXT N_( \
"
Allows you to modify the default caching value for
UDP streams. This " \
"value should be set in millisecond
unit
s." )
"
Default caching value for outbound
UDP streams. This " \
"value should be set in milliseconds." )
#define TTL_TEXT N_("Time-To-Live (TTL)")
#define TTL_LONGTEXT N_("
Allows you to define the
Time-To-Live of the " \
#define TTL_LONGTEXT N_("Time-To-Live of the " \
"outgoing stream.")
#define GROUP_TEXT N_("Group packets")
#define GROUP_LONGTEXT N_("Packets can be sent one by one at the right time " \
"or by groups.
This allows you to giv
e the number " \
"or by groups.
You can choos
e the number " \
"of packets that will be sent at a time. It " \
"helps reducing the scheduling load on " \
"heavily-loaded systems." )
#define RAW_TEXT N_("Raw write")
#define RAW_LONGTEXT N_("
If you enable this option, p
ackets will be sent " \
#define RAW_LONGTEXT N_("
P
ackets will be sent " \
"directly, without trying to fill the MTU (ie, " \
"without trying to make the biggest possible packets " \
"in order to improve streaming)." )
...
...
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