Commit 5f68da68 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

No full point at end of configuration item short text

parent 251d121b
...@@ -73,7 +73,7 @@ static int FakeCallback( vlc_object_t *, char const *, ...@@ -73,7 +73,7 @@ static int FakeCallback( vlc_object_t *, char const *,
#define DEINTERLACE_MODULE_TEXT N_("Deinterlace module") #define DEINTERLACE_MODULE_TEXT N_("Deinterlace module")
#define DEINTERLACE_MODULE_LONGTEXT N_( \ #define DEINTERLACE_MODULE_LONGTEXT N_( \
"Deinterlace module to use." ) "Deinterlace module to use." )
#define CHROMA_TEXT N_("Chroma used.") #define CHROMA_TEXT N_("Chroma used")
#define CHROMA_LONGTEXT N_( \ #define CHROMA_LONGTEXT N_( \
"Force use of a specific chroma for output. Default is I420." ) "Force use of a specific chroma for output. Default is I420." )
......
...@@ -50,7 +50,7 @@ static void Close( vlc_object_t * ); ...@@ -50,7 +50,7 @@ static void Close( vlc_object_t * );
#define HANDLERS_LONGTEXT N_( \ #define HANDLERS_LONGTEXT N_( \
"List of handler extensions and executable paths (for instance: " \ "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 ART_TEXT N_( "Export album art as /art." ) #define ART_TEXT N_( "Export album art as /art" )
#define ART_LONGTEXT N_( \ #define ART_LONGTEXT N_( \
"Allow exporting album art for current playlist items at the " \ "Allow exporting album art for current playlist items at the " \
"/art and /art?id=<id> URLs." ) "/art and /art?id=<id> URLs." )
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
#include <lirc/lirc_client.h> #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_( \ #define LIRC_LONGTEXT N_( \
"Tell lirc to read this configuration file. By default it " \ "Tell lirc to read this configuration file. By default it " \
"searches in the users home directory." ) "searches in the users home directory." )
...@@ -184,7 +184,7 @@ static void Process( intf_thread_t *p_intf ) ...@@ -184,7 +184,7 @@ static void Process( intf_thread_t *p_intf )
if( i_key ) if( i_key )
var_SetInteger( p_intf->p_libvlc, "key-action", i_key ); var_SetInteger( p_intf->p_libvlc, "key-action", i_key );
else else
msg_Err( p_intf, "Unknown hotkey '%s'.", c ); msg_Err( p_intf, "Unknown hotkey '%s'", c );
} }
else if( !strncmp( "menu ", c, 5) ) else if( !strncmp( "menu ", c, 5) )
{ {
......
...@@ -50,7 +50,7 @@ static void Close( vlc_object_t * ); ...@@ -50,7 +50,7 @@ static void Close( vlc_object_t * );
#define FOURCC_LONGTEXT N_( \ #define FOURCC_LONGTEXT N_( \
"FOURCC code of the raw input format. This is a four character string." ) "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'. ") #define LANG_LONGTEXT N_("Forces the audio language for the output mux. Three letter ISO639 code. Default is 'eng'. ")
#ifdef WORDS_BIGENDIAN #ifdef WORDS_BIGENDIAN
......
...@@ -100,13 +100,13 @@ static void ShowDialog ( intf_thread_t *, int, int, intf_dialog_args_t * ); ...@@ -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 " \ #define ADVANCED_OPTIONS_LONGTEXT N_( "Show all the advanced options " \
"in the dialogs." ) "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 " \ #define OPACITY_LONGTEXT N_( "Sets the windows opacity between 0.1 and 1 " \
"for main interface, playlist and extended panel."\ "for main interface, playlist and extended panel."\
" This option only works with Windows and " \ " This option only works with Windows and " \
"X11 with composite extensions." ) "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 " \ #define OPACITY_FS_LONGTEXT N_( "Sets the fullscreen controller opacity between 0.1 and 1 " \
"for main interface, playlist and extended panel."\ "for main interface, playlist and extended panel."\
" This option only works with Windows and " \ " This option only works with Windows and " \
......
...@@ -60,7 +60,7 @@ static picture_t *Filter( filter_t *, picture_t * ); ...@@ -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_TEXT N_("Chroma for the base image")
#define BASE_CHROMA_LONGTEXT N_("Chroma which the base image will be loaded in") #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_IMAGE_LONGTEXT N_("The image blended onto the base image")
#define BLEND_CHROMA_TEXT N_("Chroma for the blend 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 ) ...@@ -244,7 +244,7 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
} }
time = mdate() - time; 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.0f ); time / 1000000.0f );
msg_Info( p_filter, "Speed is: %f images/second, %f pixels/second", msg_Info( p_filter, "Speed is: %f images/second, %f pixels/second",
(float) p_sys->i_loops / time * 1000000, (float) p_sys->i_loops / time * 1000000,
......
...@@ -57,23 +57,23 @@ ...@@ -57,23 +57,23 @@
#define DEVICE_LONGTEXT N_(\ #define DEVICE_LONGTEXT N_(\
"Framebuffer device to use for rendering (usually /dev/fb0).") "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_(\ #define TTY_LONGTEXT N_(\
"Run framebuffer on current TTY device (default enabled). " \ "Run framebuffer on current TTY device (default enabled). " \
"(disable tty handling with caution)") "(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_(\ #define FB_MODE_LONGTEXT N_(\
"Select the resolution for the framebuffer. Currently it supports " \ "Select the resolution for the framebuffer. Currently it supports " \
"the values 0=QCIF 1=CIF 2=NTSC 3=PAL, 4=auto (default 4=auto)") "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_(\ #define HW_ACCEL_LONGTEXT N_(\
"If your framebuffer supports hardware acceleration or does double buffering " \ "If your framebuffer supports hardware acceleration or does double buffering " \
"in hardware then you must disable this option. It then does double buffering " \ "in hardware then you must disable this option. It then does double buffering " \
"in software.") "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.") #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 *); static int Open (vlc_object_t *);
...@@ -190,12 +190,12 @@ static int Open(vlc_object_t *object) ...@@ -190,12 +190,12 @@ static int Open(vlc_object_t *object)
#if !defined(WIN32) && defined(HAVE_ISATTY) #if !defined(WIN32) && defined(HAVE_ISATTY)
/* Check that stdin is a TTY */ /* Check that stdin is a TTY */
if (sys->is_tty && !isatty(0)) { 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); free(sys);
return VLC_EGENERIC; return VLC_EGENERIC;
} }
msg_Warn(vd, "disabling tty handling, use with caution because " msg_Warn(vd, "disabling TTY handling, use with caution because "
"there is no way to return to the tty."); "there is no way to return to the TTY");
#endif #endif
const int mode = var_CreateGetInteger(vd, "fb-mode"); const int mode = var_CreateGetInteger(vd, "fb-mode");
......
...@@ -79,7 +79,7 @@ static void ToggleFullScreen ( vout_thread_t * ); ...@@ -79,7 +79,7 @@ static void ToggleFullScreen ( vout_thread_t * );
#define DEVICE_LONGTEXT N_( \ #define DEVICE_LONGTEXT N_( \
"OMAP Framebuffer device to use for rendering (usually /dev/fb0).") "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_( \ #define CHROMA_LONGTEXT N_( \
"Force use of a specific chroma for output. Default is Y420 (specific to N770/N8xx hardware)." ) "Force use of a specific chroma for output. Default is Y420 (specific to N770/N8xx hardware)." )
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
#define YUV_FILE_TEXT N_("device, fifo or filename") #define YUV_FILE_TEXT N_("device, fifo or filename")
#define YUV_FILE_LONGTEXT N_("device, fifo or filename to write yuv frames too.") #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_(\ #define CHROMA_LONGTEXT N_(\
"Force use of a specific chroma for output. Default is I420.") "Force use of a specific chroma for output. Default is I420.")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment