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
5b67f077
Commit
5b67f077
authored
Jun 28, 2004
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ALL: minor spelling fixes
parent
8cb4d991
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
12 deletions
+12
-12
modules/access/dvb/access.c
modules/access/dvb/access.c
+1
-1
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+2
-2
modules/video_filter/clone.c
modules/video_filter/clone.c
+2
-2
modules/video_filter/logo.c
modules/video_filter/logo.c
+4
-4
modules/video_filter/motionblur.c
modules/video_filter/motionblur.c
+1
-1
modules/video_filter/wall.c
modules/video_filter/wall.c
+2
-2
No files found.
modules/access/dvb/access.c
View file @
5b67f077
...
...
@@ -108,7 +108,7 @@ static void CloseProgram( input_thread_t * p_input );
#define BUDGET_LONGTEXT N_("This allows you to stream an entire transponder with a budget card. Budget mode is compatible with the ts2 demux.")
#define SATNO_TEXT N_("Satellite number in the Diseqc system")
#define SATNO_LONGTEXT N_("[0=no diseqc, 1-4=normal diseqc, -1=A, -2=B simple diseqc")
#define SATNO_LONGTEXT N_("[0=no diseqc, 1-4=normal diseqc, -1=A, -2=B simple diseqc
]
")
#define VOLTAGE_TEXT N_("LNB voltage")
#define VOLTAGE_LONGTEXT N_("In Volts [0, 13=vertical, 18=horizontal]")
...
...
modules/stream_out/rtp.c
View file @
5b67f077
...
...
@@ -47,13 +47,13 @@
"Allows you to specify the SDP used for the streaming output. " \
"You must use an url: http://location to access the SDP via HTTP, " \
"rtsp://location for RTSP access, and sap:// for the SDP to be " \
"announced via SAP" )
"announced via SAP
.
" )
#define MUX_TEXT N_("Muxer")
#define MUX_LONGTEXT N_( \
"Allows you to specify the muxer used for the streaming output." )
#define PORT_TEXT N_("Port")
#define PORT_LONGTEXT N_( \
"Allows you to specify the base port used for the RTP streaming" )
"Allows you to specify the base port used for the RTP streaming
.
" )
#define TTL_TEXT N_("Time to live")
#define TTL_LONGTEXT N_( \
"Allows you to specify the time to live for the output stream." )
...
...
modules/video_filter/clone.c
View file @
5b67f077
...
...
@@ -54,10 +54,10 @@ static int SendEvents( vlc_object_t *, char const *,
*****************************************************************************/
#define COUNT_TEXT N_("Number of clones")
#define COUNT_LONGTEXT N_("Select the number of video windows in which to "\
"clone the video")
"clone the video
.
")
#define VOUTLIST_TEXT N_("List of video output modules")
#define VOUTLIST_LONGTEXT N_("Select the specific video output modules that you want to activate")
#define VOUTLIST_LONGTEXT N_("Select the specific video output modules that you want to activate
.
")
vlc_module_begin
();
set_description
(
_
(
"Clone video filter"
)
);
...
...
modules/video_filter/logo.c
View file @
5b67f077
...
...
@@ -56,13 +56,13 @@ static int MouseEvent( vlc_object_t *, char const *,
*****************************************************************************/
#define FILE_TEXT N_("Logo filename")
#define FILE_LONGTEXT N_("The file must be in PNG RGBA 8bits format (for now)")
#define FILE_LONGTEXT N_("The file must be in PNG RGBA 8bits format (for now)
.
")
#define POSX_TEXT N_("X coordinate of the logo")
#define POSX_LONGTEXT N_("You can move the logo by left-clicking on it" )
#define POSX_LONGTEXT N_("You can move the logo by left-clicking on it
.
" )
#define POSY_TEXT N_("Y coordinate of the logo")
#define POSY_LONGTEXT N_("You can move the logo by left-clicking on it" )
#define POSY_LONGTEXT N_("You can move the logo by left-clicking on it
.
" )
#define TRANS_TEXT N_("Transparency of the logo (255-0)")
#define TRANS_LONGTEXT N_("You can change it by middle-clicking and moving mouse left or right")
#define TRANS_LONGTEXT N_("You can change it by middle-clicking and moving mouse left or right
.
")
vlc_module_begin
();
set_description
(
_
(
"Logo video filter"
)
);
...
...
modules/video_filter/motionblur.c
View file @
5b67f077
...
...
@@ -52,7 +52,7 @@ static int SendEvents( vlc_object_t *, char const *,
* Module descriptor
*****************************************************************************/
#define MODE_TEXT N_("Blur factor (1-127)")
#define MODE_LONGTEXT N_("The degree of blurring from 1 to 127")
#define MODE_LONGTEXT N_("The degree of blurring from 1 to 127
.
")
vlc_module_begin
();
set_description
(
_
(
"Motion blur filter"
)
);
...
...
modules/video_filter/wall.c
View file @
5b67f077
...
...
@@ -52,11 +52,11 @@ static int SendEvents( vlc_object_t *, char const *,
*****************************************************************************/
#define COLS_TEXT N_("Number of columns")
#define COLS_LONGTEXT N_("Select the number of horizontal video windows in " \
"which to split the video")
"which to split the video
.
")
#define ROWS_TEXT N_("Number of rows")
#define ROWS_LONGTEXT N_("Select the number of vertical video windows in " \
"which to split the video")
"which to split the video
.
")
#define ACTIVE_TEXT N_("Active windows")
#define ACTIVE_LONGTEXT N_("Comma separated list of active windows, " \
...
...
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