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
5f68da68
Commit
5f68da68
authored
Feb 15, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
No full point at end of configuration item short text
parent
251d121b
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
18 additions
and
18 deletions
+18
-18
modules/codec/fake.c
modules/codec/fake.c
+1
-1
modules/control/http/http.c
modules/control/http/http.c
+1
-1
modules/control/lirc.c
modules/control/lirc.c
+2
-2
modules/demux/rawaud.c
modules/demux/rawaud.c
+1
-1
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+2
-2
modules/video_filter/blendbench.c
modules/video_filter/blendbench.c
+2
-2
modules/video_output/fb.c
modules/video_output/fb.c
+7
-7
modules/video_output/omapfb.c
modules/video_output/omapfb.c
+1
-1
modules/video_output/yuv.c
modules/video_output/yuv.c
+1
-1
No files found.
modules/codec/fake.c
View file @
5f68da68
...
...
@@ -73,7 +73,7 @@ static int FakeCallback( vlc_object_t *, char const *,
#define DEINTERLACE_MODULE_TEXT N_("Deinterlace module")
#define DEINTERLACE_MODULE_LONGTEXT N_( \
"Deinterlace module to use." )
#define CHROMA_TEXT N_("Chroma used
.
")
#define CHROMA_TEXT N_("Chroma used")
#define CHROMA_LONGTEXT N_( \
"Force use of a specific chroma for output. Default is I420." )
...
...
modules/control/http/http.c
View file @
5f68da68
...
...
@@ -50,7 +50,7 @@ static void Close( vlc_object_t * );
#define HANDLERS_LONGTEXT N_( \
"List of handler extensions and executable paths (for instance: " \
"php=/usr/bin/php,pl=/usr/bin/perl)." )
#define ART_TEXT N_( "Export album art as /art
.
" )
#define ART_TEXT N_( "Export album art as /art" )
#define ART_LONGTEXT N_( \
"Allow exporting album art for current playlist items at the " \
"/art and /art?id=<id> URLs." )
...
...
modules/control/lirc.c
View file @
5f68da68
...
...
@@ -43,7 +43,7 @@
#include <lirc/lirc_client.h>
#define LIRC_TEXT N_("Change the lirc configuration file
.
")
#define LIRC_TEXT N_("Change the lirc configuration file")
#define LIRC_LONGTEXT N_( \
"Tell lirc to read this configuration file. By default it " \
"searches in the users home directory." )
...
...
@@ -184,7 +184,7 @@ static void Process( intf_thread_t *p_intf )
if
(
i_key
)
var_SetInteger
(
p_intf
->
p_libvlc
,
"key-action"
,
i_key
);
else
msg_Err
(
p_intf
,
"Unknown hotkey '%s'
.
"
,
c
);
msg_Err
(
p_intf
,
"Unknown hotkey '%s'"
,
c
);
}
else
if
(
!
strncmp
(
"menu "
,
c
,
5
)
)
{
...
...
modules/demux/rawaud.c
View file @
5f68da68
...
...
@@ -50,7 +50,7 @@ static void Close( vlc_object_t * );
#define FOURCC_LONGTEXT N_( \
"FOURCC code of the raw input format. This is a four character string." )
#define LANG_TEXT N_("Forces the audio language
.
")
#define LANG_TEXT N_("Forces the audio language")
#define LANG_LONGTEXT N_("Forces the audio language for the output mux. Three letter ISO639 code. Default is 'eng'. ")
#ifdef WORDS_BIGENDIAN
...
...
modules/gui/qt4/qt4.cpp
View file @
5f68da68
...
...
@@ -100,13 +100,13 @@ static void ShowDialog ( intf_thread_t *, int, int, intf_dialog_args_t * );
#define ADVANCED_OPTIONS_LONGTEXT N_( "Show all the advanced options " \
"in the dialogs." )
#define OPACITY_TEXT N_( "Windows opacity between 0.1 and 1
.
" )
#define OPACITY_TEXT N_( "Windows opacity between 0.1 and 1" )
#define OPACITY_LONGTEXT N_( "Sets the windows opacity between 0.1 and 1 " \
"for main interface, playlist and extended panel."\
" This option only works with Windows and " \
"X11 with composite extensions." )
#define OPACITY_FS_TEXT N_( "Fullscreen controller opacity opacity between 0.1 and 1
.
" )
#define OPACITY_FS_TEXT N_( "Fullscreen controller opacity opacity between 0.1 and 1" )
#define OPACITY_FS_LONGTEXT N_( "Sets the fullscreen controller opacity between 0.1 and 1 " \
"for main interface, playlist and extended panel."\
" This option only works with Windows and " \
...
...
modules/video_filter/blendbench.c
View file @
5f68da68
...
...
@@ -60,7 +60,7 @@ static picture_t *Filter( filter_t *, picture_t * );
#define BASE_CHROMA_TEXT N_("Chroma for the base image")
#define BASE_CHROMA_LONGTEXT N_("Chroma which the base image will be loaded in")
#define BLEND_IMAGE_TEXT N_("Image which will be blended
.
")
#define BLEND_IMAGE_TEXT N_("Image which will be blended")
#define BLEND_IMAGE_LONGTEXT N_("The image blended onto the base image")
#define BLEND_CHROMA_TEXT N_("Chroma for the blend image")
...
...
@@ -244,7 +244,7 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
}
time
=
mdate
()
-
time
;
msg_Info
(
p_filter
,
"Blended %d images in %f sec
.
"
,
p_sys
->
i_loops
,
msg_Info
(
p_filter
,
"Blended %d images in %f sec"
,
p_sys
->
i_loops
,
time
/
1000000
.
0
f
);
msg_Info
(
p_filter
,
"Speed is: %f images/second, %f pixels/second"
,
(
float
)
p_sys
->
i_loops
/
time
*
1000000
,
...
...
modules/video_output/fb.c
View file @
5f68da68
...
...
@@ -57,23 +57,23 @@
#define DEVICE_LONGTEXT N_(\
"Framebuffer device to use for rendering (usually /dev/fb0).")
#define TTY_TEXT N_("Run fb on current tty
.
")
#define TTY_TEXT N_("Run fb on current tty")
#define TTY_LONGTEXT N_(\
"Run framebuffer on current TTY device (default enabled). " \
"(disable tty handling with caution)")
#define FB_MODE_TEXT N_("Framebuffer resolution to use
.
")
#define FB_MODE_TEXT N_("Framebuffer resolution to use")
#define FB_MODE_LONGTEXT N_(\
"Select the resolution for the framebuffer. Currently it supports " \
"the values 0=QCIF 1=CIF 2=NTSC 3=PAL, 4=auto (default 4=auto)")
#define HW_ACCEL_TEXT N_("Framebuffer uses hw acceleration
.
")
#define HW_ACCEL_TEXT N_("Framebuffer uses hw acceleration")
#define HW_ACCEL_LONGTEXT N_(\
"If your framebuffer supports hardware acceleration or does double buffering " \
"in hardware then you must disable this option. It then does double buffering " \
"in software.")
#define CHROMA_TEXT N_("Image format (default RGB)
.
")
#define CHROMA_TEXT N_("Image format (default RGB)")
#define CHROMA_LONGTEXT N_("Chroma fourcc used by the framebuffer. Default is RGB since the fb device has no way to report its chroma.")
static
int
Open
(
vlc_object_t
*
);
...
...
@@ -190,12 +190,12 @@ static int Open(vlc_object_t *object)
#if !defined(WIN32) && defined(HAVE_ISATTY)
/* Check that stdin is a TTY */
if
(
sys
->
is_tty
&&
!
isatty
(
0
))
{
msg_Warn
(
vd
,
"
fd 0
is not a TTY"
);
msg_Warn
(
vd
,
"
standard input
is not a TTY"
);
free
(
sys
);
return
VLC_EGENERIC
;
}
msg_Warn
(
vd
,
"disabling
tty
handling, use with caution because "
"there is no way to return to the
tty.
"
);
msg_Warn
(
vd
,
"disabling
TTY
handling, use with caution because "
"there is no way to return to the
TTY
"
);
#endif
const
int
mode
=
var_CreateGetInteger
(
vd
,
"fb-mode"
);
...
...
modules/video_output/omapfb.c
View file @
5f68da68
...
...
@@ -79,7 +79,7 @@ static void ToggleFullScreen ( vout_thread_t * );
#define DEVICE_LONGTEXT N_( \
"OMAP Framebuffer device to use for rendering (usually /dev/fb0).")
#define CHROMA_TEXT N_("Chroma used
.
")
#define CHROMA_TEXT N_("Chroma used")
#define CHROMA_LONGTEXT N_( \
"Force use of a specific chroma for output. Default is Y420 (specific to N770/N8xx hardware)." )
...
...
modules/video_output/yuv.c
View file @
5f68da68
...
...
@@ -41,7 +41,7 @@
#define YUV_FILE_TEXT N_("device, fifo or filename")
#define YUV_FILE_LONGTEXT N_("device, fifo or filename to write yuv frames too.")
#define CHROMA_TEXT N_("Chroma used
.
")
#define CHROMA_TEXT N_("Chroma used")
#define CHROMA_LONGTEXT N_(\
"Force use of a specific chroma for output. Default is I420.")
...
...
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