[vlc-devel] commit: No full point at end of configuration item short text ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sun Feb 14 23:02:37 CET 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Feb 15 00:01:16 2010 +0200| [5f68da68a5534c31a09c43d284a9939e6c39f6ec] | committer: Rémi Denis-Courmont
No full point at end of configuration item short text
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5f68da68a5534c31a09c43d284a9939e6c39f6ec
---
modules/codec/fake.c | 2 +-
modules/control/http/http.c | 2 +-
modules/control/lirc.c | 4 ++--
modules/demux/rawaud.c | 2 +-
modules/gui/qt4/qt4.cpp | 4 ++--
modules/video_filter/blendbench.c | 4 ++--
modules/video_output/fb.c | 14 +++++++-------
modules/video_output/omapfb.c | 2 +-
modules/video_output/yuv.c | 2 +-
9 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/modules/codec/fake.c b/modules/codec/fake.c
index d286ece..63d05ee 100644
--- a/modules/codec/fake.c
+++ b/modules/codec/fake.c
@@ -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." )
diff --git a/modules/control/http/http.c b/modules/control/http/http.c
index 7232fae..3694c2c 100644
--- a/modules/control/http/http.c
+++ b/modules/control/http/http.c
@@ -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." )
diff --git a/modules/control/lirc.c b/modules/control/lirc.c
index b3613e1..5688c97 100644
--- a/modules/control/lirc.c
+++ b/modules/control/lirc.c
@@ -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) )
{
diff --git a/modules/demux/rawaud.c b/modules/demux/rawaud.c
index f8f5289..b5a270b 100644
--- a/modules/demux/rawaud.c
+++ b/modules/demux/rawaud.c
@@ -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
diff --git a/modules/gui/qt4/qt4.cpp b/modules/gui/qt4/qt4.cpp
index 821f594..24a3219 100644
--- a/modules/gui/qt4/qt4.cpp
+++ b/modules/gui/qt4/qt4.cpp
@@ -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 " \
diff --git a/modules/video_filter/blendbench.c b/modules/video_filter/blendbench.c
index e432ea2..263b404 100644
--- a/modules/video_filter/blendbench.c
+++ b/modules/video_filter/blendbench.c
@@ -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.0f );
msg_Info( p_filter, "Speed is: %f images/second, %f pixels/second",
(float) p_sys->i_loops / time * 1000000,
diff --git a/modules/video_output/fb.c b/modules/video_output/fb.c
index 1efb21b..1426ad9 100644
--- a/modules/video_output/fb.c
+++ b/modules/video_output/fb.c
@@ -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");
diff --git a/modules/video_output/omapfb.c b/modules/video_output/omapfb.c
index 606d4ac..9646cbd 100644
--- a/modules/video_output/omapfb.c
+++ b/modules/video_output/omapfb.c
@@ -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)." )
diff --git a/modules/video_output/yuv.c b/modules/video_output/yuv.c
index c219070..845e43b 100644
--- a/modules/video_output/yuv.c
+++ b/modules/video_output/yuv.c
@@ -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.")
More information about the vlc-devel
mailing list