]> git.sesse.net Git - vlc/commitdiff
* now 0.6.0-cvs
authorChristophe Massiot <massiot@videolan.org>
Thu, 15 May 2003 22:27:38 +0000 (22:27 +0000)
committerChristophe Massiot <massiot@videolan.org>
Thu, 15 May 2003 22:27:38 +0000 (22:27 +0000)
* ALL: Capitalize all preferences text strings

41 files changed:
configure.ac.in
extras/MacOSX/Resources/English.lproj/InfoPlist.strings
extras/MacOSX/vlc.pbproj/project.pbxproj
modules/access/dvd/dvd.c
modules/access/file.c
modules/access/ftp.c
modules/access/http.c
modules/access/mms/mms.c
modules/access/satellite/satellite.c
modules/access/slp.c
modules/access/v4l/v4l.c
modules/audio_filter/channel_mixer/headphone.c
modules/audio_output/coreaudio.c
modules/audio_output/file.c
modules/audio_output/oss.c
modules/codec/mpeg_video/parser.c
modules/codec/spudec/spudec.c
modules/control/http.c
modules/control/rc/rc.c
modules/demux/demuxdump.c
modules/demux/mpeg/ts.c
modules/gui/familiar/familiar.c
modules/gui/gtk/gnome.c
modules/gui/gtk/gtk.c
modules/gui/macosx/macosx.m
modules/gui/win32/win32.cpp
modules/misc/dummy/dummy.c
modules/misc/logger/logger.c
modules/video_filter/adjust.c
modules/video_filter/clone.c
modules/video_filter/crop.c
modules/video_filter/deinterlace/deinterlace.c
modules/video_filter/distort.c
modules/video_filter/motionblur.c
modules/video_filter/transform.c
modules/video_filter/wall.c
modules/video_output/directx/directx.c
modules/video_output/mga/xmga.c
modules/video_output/x11/x11.c
modules/video_output/x11/xvideo.c
modules/visualization/xosd/xosd.c

index e7b0e01f93d28cc2d9a0bba6f8a4efe9b3477d97..e9453462e138da7bcb070b4f6128f769369adfbe 100644 (file)
@@ -1,6 +1,6 @@
 dnl Autoconf settings for vlc
 
-AC_INIT(vlc,0.5.4-cvs)
+AC_INIT(vlc,0.6.0-cvs)
 
 CONFIGURE_LINE="$0 $*"
 CODENAME="Natalya"
@@ -12,7 +12,7 @@ AC_CANONICAL_SYSTEM
 
 dnl XXX: we don't put any flags here, because automake 1.5 doesn't support
 dnl them. And we need the comma otherwize automake will choke on it.
-AM_INIT_AUTOMAKE(vlc,0.5.4-cvs)
+AM_INIT_AUTOMAKE(vlc,0.6.0-cvs)
 AM_CONFIG_HEADER(config.h)
 
 dnl
index 2c577b4396b3458b1ed7f3292021384763910594..26f6ee5a47b353c703c6e4bf049541e466c6b766 100644 (file)
@@ -1,6 +1,6 @@
 /* Localized versions of Info.plist keys */
 
 CFBundleName = "VLC";
-CFBundleShortVersionString = "0.5.4-cvs";
-CFBundleGetInfoString = "VLC media player 0.5.4-cvs, Copyright (c) 1996-2003 VideoLAN.";
+CFBundleShortVersionString = "0.6.0-cvs";
+CFBundleGetInfoString = "VLC media player 0.6.0-cvs, Copyright (c) 1996-2003 VideoLAN.";
 NSHumanReadableCopyright = "Copyright (c) 1996-2003 VideoLAN.";
index b461b9456650b372814454d4410fca3d18c16061..e68bbfb5c633356e5b312d1e1b9ceee68f207fd1 100644 (file)
        <key>CFBundleExecutable</key>
        <string>VLC</string>
        <key>CFBundleGetInfoString</key>
-       <string>VLC media player 0.5.4-cvs, Copyright (c) 1996-2003 VideoLAN.</string>
+       <string>VLC media player 0.6.0-cvs, Copyright (c) 1996-2003 VideoLAN.</string>
        <key>CFBundleIconFile</key>
        <string>vlc.icns</string>
        <key>CFBundleIdentifier</key>
        <key>CFBundlePackageType</key>
        <string>APPL</string>
        <key>CFBundleShortVersionString</key>
-       <string>0.5.4-cvs</string>
+       <string>0.6.0-cvs</string>
        <key>CFBundleSignature</key>
        <string>VLC#</string>
        <key>CFBundleURLTypes</key>
                </dict>
        </array>
        <key>CFBundleVersion</key>
-       <string>0.5.4-cvs</string>
+       <string>0.6.0-cvs</string>
        <key>NSAppleScriptEnabled</key>
        <string>YES</string>
        <key>NSMainNibFile</key>
index 6115e524e5e0f28d3d3c172e25048be98d89cfb2..02d0ca50a980fc97d9ea2db1ac6ab84db5bf4b5c 100644 (file)
@@ -2,7 +2,7 @@
  * dvd.c : DVD input module for vlc
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: dvd.c,v 1.6 2003/03/30 18:14:35 gbazin Exp $
+ * $Id: dvd.c,v 1.7 2003/05/15 22:27:36 massiot Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -62,7 +62,7 @@ static void UnprobeLibDVDCSS( void );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define CSSMETHOD_TEXT N_("method to use by libdvdcss for key decryption")
+#define CSSMETHOD_TEXT N_("Method to use by libdvdcss for key decryption")
 #define CSSMETHOD_LONGTEXT N_( \
     "Set the method used by libdvdcss for key decryption.\n" \
     "title: decrypted title key is guessed from the encrypted sectors of " \
index 7730f0fc8e1d067b4b9d9e38a43532a250765589..94f4277d618b737c48ab39df1f9aa2650b5f6f2e 100644 (file)
@@ -2,7 +2,7 @@
  * file.c: file input (file: access plug-in)
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: file.c,v 1.19 2003/05/08 15:58:56 gbazin Exp $
+ * $Id: file.c,v 1.20 2003/05/15 22:27:36 massiot Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -66,7 +66,7 @@ static ssize_t Read   ( input_thread_t *, byte_t *, size_t );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define CACHING_TEXT N_("caching value in ms")
+#define CACHING_TEXT N_("Caching value in ms")
 #define CACHING_LONGTEXT N_( \
     "Allows you to modify the default caching value for file streams. This " \
     "value should be set in miliseconds units." )
index 5ea184b5e44b4178a2a5da336ffa92a212b55561..6bec70002a6372ca02b21ad7c7ecc791ec67b299 100644 (file)
@@ -2,7 +2,7 @@
  * ftp.c:
  *****************************************************************************
  * Copyright (C) 2001-2003 VideoLAN
- * $Id: ftp.c,v 1.18 2003/05/08 19:51:38 fenrir Exp $
+ * $Id: ftp.c,v 1.19 2003/05/15 22:27:36 massiot Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -83,7 +83,7 @@ static int  ftp_StopStream ( input_thread_t *);
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define CACHING_TEXT N_("caching value in ms")
+#define CACHING_TEXT N_("Caching value in ms")
 #define CACHING_LONGTEXT N_( \
     "Allows you to modify the default caching value for ftp streams. This " \
     "value should be set in miliseconds units." )
index f66b3792b6bdcc5f9a75913752601d3f3c1e68e2..7f0f8b86bb94d7d5592468011002e9815523c983 100644 (file)
@@ -2,7 +2,7 @@
  * http.c: HTTP access plug-in
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: http.c,v 1.34 2003/04/30 09:11:13 gbazin Exp $
+ * $Id: http.c,v 1.35 2003/05/15 22:27:36 massiot Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -71,13 +71,13 @@ static ssize_t Read    ( input_thread_t *, byte_t *, size_t );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define PROXY_TEXT N_("specify an HTTP proxy")
+#define PROXY_TEXT N_("Specify an HTTP proxy")
 #define PROXY_LONGTEXT N_( \
     "Specify an HTTP proxy to use. It must be in the form " \
     "http://myproxy.mydomain:myport. If none is specified, the HTTP_PROXY " \
     "environment variable will be tried." )
 
-#define CACHING_TEXT N_("caching value in ms")
+#define CACHING_TEXT N_("Caching value in ms")
 #define CACHING_LONGTEXT N_( \
     "Allows you to modify the default caching value for http streams. This " \
     "value should be set in miliseconds units." )
index 47f5d6e8188fa570a0adcf7f6de16c22ff874c36..edf603d1a007cab063a2d6edfe62c8e81f799887 100644 (file)
@@ -2,7 +2,7 @@
  * mms.c: MMS over tcp, udp and http access plug-in
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: mms.c,v 1.33 2003/05/06 02:01:35 fenrir Exp $
+ * $Id: mms.c,v 1.34 2003/05/15 22:27:36 massiot Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -54,7 +54,7 @@ static void Close       ( vlc_object_t * );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define CACHING_TEXT N_("caching value in ms")
+#define CACHING_TEXT N_("Caching value in ms")
 #define CACHING_LONGTEXT N_( \
     "Allows you to modify the default caching value for mms streams. This " \
     "value should be set in miliseconds units." )
index a0e328a36b513250193bcb232672fcf145bb406c..45ec37708a6a8b967798a20dca61b6ffc72736f0 100644 (file)
@@ -38,28 +38,28 @@ void E_(Close)   ( vlc_object_t * );
  * Module descriptor
  *****************************************************************************/
 
-#define FREQ_TEXT N_("satellite default transponder frequency")
+#define FREQ_TEXT N_("Satellite default transponder frequency")
 #define FREQ_LONGTEXT ""
 
-#define POL_TEXT N_("satellite default transponder polarization")
+#define POL_TEXT N_("Satellite default transponder polarization")
 #define POL_LONGTEXT ""
 
-#define FEC_TEXT N_("satellite default transponder FEC")
+#define FEC_TEXT N_("Satellite default transponder FEC")
 #define FEC_LONGTEXT ""
 
-#define SRATE_TEXT N_("satellite default transponder symbol rate")
+#define SRATE_TEXT N_("Satellite default transponder symbol rate")
 #define SRATE_LONGTEXT ""
 
-#define DISEQC_TEXT N_("use diseqc with antenna")
+#define DISEQC_TEXT N_("Use diseqc with antenna")
 #define DISEQC_LONGTEXT ""
 
-#define LNB_LOF1_TEXT N_("antenna lnb_lof1 (kHz)")
+#define LNB_LOF1_TEXT N_("Antenna lnb_lof1 (kHz)")
 #define LNB_LOF1_LONGTEXT ""
 
-#define LNB_LOF2_TEXT N_("antenna lnb_lof2 (kHz)")
+#define LNB_LOF2_TEXT N_("Antenna lnb_lof2 (kHz)")
 #define LNB_LOF2_LONGTEXT ""
 
-#define LNB_SLOF_TEXT N_("antenna lnb_slof (kHz)")
+#define LNB_SLOF_TEXT N_("Antenna lnb_slof (kHz)")
 #define LNB_SLOF_LONGTEXT ""
 
 vlc_module_begin();
index dc034fc3ed86d43b1591e143b9040ddaf841412a..efae932218b6d40a8f26d51131d185d802920169 100644 (file)
@@ -2,7 +2,7 @@
  * slp.c: SLP access plugin
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: slp.c,v 1.10 2003/03/30 18:14:35 gbazin Exp $
+ * $Id: slp.c,v 1.11 2003/05/15 22:27:36 massiot Exp $
  *
  * Authors: Loïc Minier <lool@videolan.org>
  *
@@ -69,7 +69,7 @@ static int  Demux ( input_thread_t * );
 #define FILTER_LONGTEXT "This is a query formulated of attribute pattern " \
                         "matching expressions in the form of an LDAPv3 "   \
                         "search filter or empty for all answers"
-#define LANG_TEXT     "language requested in SLP requests"
+#define LANG_TEXT     "Language requested in SLP requests"
 #define LANG_LONGTEXT "RFC 1766 Language Tag for the natural language " \
                       "locale of requests, leave empty to use the "     \
                       "default locale; it is used in all SLP queries"
index 1d8c2415126de7a3edcd27ada6d13a99234a183c..b11d27b34e1e83b0917d30edf82426f8d585951c 100644 (file)
@@ -2,7 +2,7 @@
  * v4l.c : Video4Linux input module for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: v4l.c,v 1.15 2003/05/08 19:26:59 fenrir Exp $
+ * $Id: v4l.c,v 1.16 2003/05/15 22:27:36 massiot Exp $
  *
  * Author: Samuel Hocevar <sam@zoy.org>
  *
@@ -61,7 +61,7 @@ static int  Demux      ( input_thread_t * );
 /*****************************************************************************
  * Module descriptior
  *****************************************************************************/
-#define CACHING_TEXT N_("caching value in ms")
+#define CACHING_TEXT N_("Caching value in ms")
 #define CACHING_LONGTEXT N_( \
     "Allows you to modify the default caching value for v4l streams. This " \
     "value should be set in miliseconds units." )
index 2d494828382721ab668682edd76636f702c5f23e..7530b5c33a093ff00eb2d81063df6c72c6374253 100644 (file)
@@ -3,7 +3,7 @@
  *               -> gives the feeling of a real room with a simple headphone
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: headphone.c,v 1.4 2003/03/29 12:22:15 gbazin Exp $
+ * $Id: headphone.c,v 1.5 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Boris Dorès <babal@via.ecp.fr>
  *
@@ -45,7 +45,7 @@ static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define HEADPHONE_DIM_TEXT N_("characteristic dimension")
+#define HEADPHONE_DIM_TEXT N_("Characteristic dimension")
 #define HEADPHONE_DIM_LONGTEXT N_( \
      "Headphone virtual spatialization effect parameter: "\
      "distance between front left speaker and listener in meters.")
index 1daa70243990763a4fa1bed03968ba71ae6bb21f..b5d6e15c852484d734aa942e7d0498c971de95e4 100644 (file)
@@ -2,7 +2,7 @@
  * coreaudio.c: CoreAudio output plugin
  *****************************************************************************
  * Copyright (C) 2002-2003 VideoLAN
- * $Id: coreaudio.c,v 1.4 2003/05/11 01:00:26 massiot Exp $
+ * $Id: coreaudio.c,v 1.5 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Colin Delacroix <colin@zoy.org>
  *          Jon Lech Johansen <jon-vl@nanocrew.net>
@@ -215,7 +215,7 @@ static OSStatus StreamListener   ( AudioStreamID inStream,
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define ADEV_TEXT N_("audio device")
+#define ADEV_TEXT N_("Audio device")
 
 vlc_module_begin();
     set_description( _("CoreAudio output") );
index e30dd6037b4d56ad7a0e6725aa7aed93aae26c85..63e72093d5e2f4e3aa03ea00045dd479f6b7f94b 100644 (file)
@@ -2,7 +2,7 @@
  * file.c : audio output which writes the samples to a file
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: file.c,v 1.21 2003/04/20 22:52:03 gbazin Exp $
+ * $Id: file.c,v 1.22 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *          Gildas Bazin <gbazin@netcourrier.com>
@@ -79,12 +79,12 @@ static void    Play        ( aout_instance_t * );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define FORMAT_TEXT N_("output format")
-#define FORMAT_LONGTEXT N_("one of \"u8\", \"s8\", \"u16\", \"s16\", " \
+#define FORMAT_TEXT N_("Output format")
+#define FORMAT_LONGTEXT N_("One of \"u8\", \"s8\", \"u16\", \"s16\", " \
                         "\"u16_le\", \"s16_le\", \"u16_be\", " \
                         "\"s16_be\", \"fixed32\", \"float32\" or \"spdif\"")
-#define WAV_TEXT N_("add wave header")
-#define WAV_LONGTEXT N_("instead of writing a raw file, you can add a wav " \
+#define WAV_TEXT N_("Add wave header")
+#define WAV_LONGTEXT N_("Instead of writing a raw file, you can add a wav " \
                         "header to the file")
 
 static char *format_list[] = { "u8", "s8", "u16", "s16", "u16_le", "s16_le",
@@ -101,8 +101,8 @@ static int format_int[] = { VLC_FOURCC('u','8',' ',' '),
                             VLC_FOURCC('f','l','3','2'),
                             VLC_FOURCC('s','p','i','f') };
 
-#define FILE_TEXT N_("output file")
-#define FILE_LONGTEXT N_("file to which the audio samples will be written to")
+#define FILE_TEXT N_("Output file")
+#define FILE_LONGTEXT N_("File to which the audio samples will be written to")
 
 vlc_module_begin();
     add_category_hint( N_("Audio"), NULL, VLC_FALSE );
index f4d1b0eeaa21c2f9b00a29e4024e4c14ae314302..5f864409b8f293306a8b91f824585f1a8efc85e8 100644 (file)
@@ -2,7 +2,7 @@
  * oss.c : OSS /dev/dsp module for vlc
  *****************************************************************************
  * Copyright (C) 2000-2002 VideoLAN
- * $Id: oss.c,v 1.59 2003/05/09 22:03:06 sigmunau Exp $
+ * $Id: oss.c,v 1.60 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Michel Kaempf <maxx@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -98,7 +98,7 @@ static mtime_t BufferDuration( aout_instance_t * p_aout );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define BUGGY_TEXT N_("try to work around buggy OSS drivers")
+#define BUGGY_TEXT N_("Try to work around buggy OSS drivers")
 #define BUGGY_LONGTEXT N_( \
     "Some buggy OSS drivers just don't like when their internal buffers " \
     "are completely filled (the sound gets heavily hashed). If you have one " \
index 4074f498657581a77a11e03ae04fe29fef3c78c7..7ad5b9c568aa012aeea44531a1f37d704ef1c2fe 100644 (file)
@@ -2,7 +2,7 @@
  * video_parser.c : video parser thread
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: parser.c,v 1.12 2003/03/30 18:14:36 gbazin Exp $
+ * $Id: parser.c,v 1.13 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *          Samuel Hocevar <sam@via.ecp.fr>
@@ -62,18 +62,18 @@ static void     BitstreamCallback ( bit_stream_t *, vlc_bool_t );
     "decoder. The default behavior is to automatically select the best " \
     "module available.")
 
-#define VDEC_MOTION_TEXT N_("motion compensation module")
+#define VDEC_MOTION_TEXT N_("Motion compensation module")
 #define VDEC_MOTION_LONGTEXT N_( \
     "This option allows you to select the motion compensation module used by "\
     "this video decoder. The default behavior is to automatically select the "\
     "best module available.")
 
-#define VDEC_SMP_TEXT N_("use additional processors")
+#define VDEC_SMP_TEXT N_("Use additional processors")
 #define VDEC_SMP_LONGTEXT N_( \
     "This video decoder can benefit from a multiprocessor computer. If you " \
     "have one, you can specify the number of processors here.")
 
-#define VPAR_SYNCHRO_TEXT N_("force synchro algorithm {I|I+|IP|IP+|IPB}")
+#define VPAR_SYNCHRO_TEXT N_("Force synchro algorithm {I|I+|IP|IP+|IPB}")
 #define VPAR_SYNCHRO_LONGTEXT N_( \
     "This allows you to force the synchro algorithm, by directly selecting " \
     "the types of picture you want to decode. Please bear in mind that if " \
index 05b4197ec51c4eb5230b17f510bc00e5bc84dc88..1eae73bf4e2e588abed80b7bdcadfe88e0cc4910 100644 (file)
@@ -2,7 +2,7 @@
  * spudec.c : SPU decoder thread
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: spudec.c,v 1.17 2003/03/30 18:14:37 gbazin Exp $
+ * $Id: spudec.c,v 1.18 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -45,7 +45,7 @@ static vout_thread_t *FindVout( spudec_thread_t * );
 /*****************************************************************************
  * Module descriptor.
  *****************************************************************************/
-#define FONT_TEXT N_("font used by the text subtitler")
+#define FONT_TEXT N_("Font used by the text subtitler")
 #define FONT_LONGTEXT N_(\
     "When the subtitles are coded in text form then, you can choose " \
     "which font will be used to display them.")
index b914137ec2b2b40ff102a5f31244e894a15090d4..ffaa9f109d264a00d55e4e64ff142fa8b916c477 100644 (file)
@@ -2,7 +2,7 @@
  * http.c :  http remote control plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: http.c,v 1.5 2003/05/09 16:01:17 gbazin Exp $
+ * $Id: http.c,v 1.6 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -71,10 +71,10 @@ struct intf_sys_t
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define PORT_TEXT N_( "http interface bind port" )
+#define PORT_TEXT N_( "HTTP interface bind port" )
 #define PORT_LONGTEXT N_( \
     "You can set the port on which the http interface will accept connections" )
-#define ADDR_TEXT N_( "http interface bind address" )
+#define ADDR_TEXT N_( "HTTP interface bind address" )
 #define ADDR_LONGTEXT N_( \
     "You can set the address on which the http interface will bind" )
 
index faf4be8ae7a30ee9d44a3731dc353def5a851093..c2e6306d120179358f2c9a008d458b835e716da2 100644 (file)
@@ -2,7 +2,7 @@
  * rc.c : remote control stdin/stdout plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: rc.c,v 1.33 2003/05/13 12:09:29 gbazin Exp $
+ * $Id: rc.c,v 1.34 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Peter Surda <shurdeek@panorama.sth.ac.at>
  *
@@ -74,10 +74,10 @@ static int  AudioConfig  ( vlc_object_t *, char const *,
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define POS_TEXT N_("show stream position")
+#define POS_TEXT N_("Show stream position")
 #define POS_LONGTEXT N_("Show the current position in seconds within the stream from time to time.")
 
-#define TTY_TEXT N_("fake TTY")
+#define TTY_TEXT N_("Fake TTY")
 #define TTY_LONGTEXT N_("Force the rc plugin to use stdin as if it was a TTY.")
 
 vlc_module_begin();
index f92503f7a1569cc97543e1fe998bf2dc2a4d57eb..e9ba85c2ca6045cf073a8b8e92786b9f51b0aea2 100644 (file)
@@ -2,7 +2,7 @@
  * demuxdump.c : Pseudo demux module for vlc (dump raw stream)
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: demuxdump.c,v 1.8 2003/03/30 18:14:37 gbazin Exp $
+ * $Id: demuxdump.c,v 1.9 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -45,9 +45,9 @@ static void Desactivate ( vlc_object_t * );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define FILE_TEXT N_("dump file name")
+#define FILE_TEXT N_("Dump file name")
 #define FILE_LONGTEXT N_( \
-    "specify a file name to which the raw stream will be dumped." )
+    "Specify a file name to which the raw stream will be dumped." )
 
 vlc_module_begin();
     set_description( _("file dump demuxer") );
index 71533666f6b2426873ea4993dc09683952e5ac95..5bd94b45f709f5e5a6e952a9c86416322a83ac83 100644 (file)
@@ -2,7 +2,7 @@
  * mpeg_ts.c : Transport Stream input module for vlc
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: ts.c,v 1.23 2003/05/06 21:01:58 gbazin Exp $
+ * $Id: ts.c,v 1.24 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Henri Fallon <henri@via.ecp.fr>
  *          Johan Bilien <jobi@via.ecp.fr>
@@ -94,13 +94,13 @@ static void TS_DVBPSI_HandlePMT ( input_thread_t *, dvbpsi_pmt_t * );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define VLS_BACKWARDS_COMPAT_TEXT N_("compatibility with pre-0.4 VLS")
+#define VLS_BACKWARDS_COMPAT_TEXT N_("Compatibility with pre-0.4 VLS")
 #define VLS_BACKWARDS_COMPAT_LONGTEXT N_( \
     "The protocol for transmitting A/52 audio streams changed between VLC " \
     "0.3.x and 0.4. By default VLC assumes you have the latest VLS. In case " \
     "you're using an old version, select this option.")
 
-#define BUGGY_PSI_TEXT N_("buggy PSI")
+#define BUGGY_PSI_TEXT N_("Buggy PSI")
 #define BUGGY_PSI_LONGTEXT N_( \
     "If you have a stream whose PSI packets do not feature incremented " \
     "continuity counters, select this option.")
index 54cdccb91203f63f4152fc3eb08462eb1960930b..3517680e04e39a90fa3ce17eda501edf25986292 100644 (file)
@@ -2,7 +2,7 @@
  * familiar.c : familiar plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: familiar.c,v 1.34 2003/03/30 18:14:37 gbazin Exp $
+ * $Id: familiar.c,v 1.35 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Jean-Paul Saman <jpsaman@wxs.nl>
  *          Marc Ariberti <marcari@videolan.org>
@@ -59,8 +59,8 @@ gint E_(GtkModeManage)   ( intf_thread_t * p_intf );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define AUTOPLAYFILE_TEXT  N_("autoplay selected file")
-#define AUTOPLAYFILE_LONGTEXT N_("automatically play a file when selected in the "\
+#define AUTOPLAYFILE_TEXT  N_("Autoplay selected file")
+#define AUTOPLAYFILE_LONGTEXT N_("Automatically play a file when selected in the "\
         "file selection list")
 
 /*****************************************************************************
index 2d49e68608bef5f168cbec04b7a6156340323a78..8fa9fa0c7834c77c1d0cc9bb073e38e90148e19b 100644 (file)
@@ -2,7 +2,7 @@
  * gnome.c : Gnome plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000 VideoLAN
- * $Id: gnome.c,v 1.15 2003/03/30 18:14:37 gbazin Exp $
+ * $Id: gnome.c,v 1.16 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -52,13 +52,13 @@ static void Manage       ( intf_thread_t * );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define TOOLTIPS_TEXT N_("show tooltips")
+#define TOOLTIPS_TEXT N_("Show tooltips")
 #define TOOLTIPS_LONGTEXT N_("Show tooltips for configuration options.")
 
-#define TOOLBAR_TEXT N_("show text on toolbar buttons")
+#define TOOLBAR_TEXT N_("Show text on toolbar buttons")
 #define TOOLBAR_LONGTEXT N_("Show the text below icons on the toolbar.")
 
-#define PREFS_MAXH_TEXT N_("maximum height for the configuration windows")
+#define PREFS_MAXH_TEXT N_("Maximum height for the configuration windows")
 #define PREFS_MAXH_LONGTEXT N_( \
     "You can set the maximum height that the configuration windows in the " \
     "preferences menu will occupy.")
index c6cc37d80db727cbc5c56ee5f9ad831bed987117..17e79c2d1c73cf54e36a15407260a1f43e973635 100644 (file)
@@ -2,7 +2,7 @@
  * gtk.c : Gtk+ plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: gtk.c,v 1.20 2003/03/30 18:14:37 gbazin Exp $
+ * $Id: gtk.c,v 1.21 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -54,10 +54,10 @@ static int  Manage       ( intf_thread_t * );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define TOOLTIPS_TEXT N_("show tooltips")
+#define TOOLTIPS_TEXT N_("Show tooltips")
 #define TOOLTIPS_LONGTEXT N_("Show tooltips for configuration options.")
 
-#define PREFS_MAXH_TEXT N_("maximum height for the configuration windows")
+#define PREFS_MAXH_TEXT N_("Maximum height for the configuration windows")
 #define PREFS_MAXH_LONGTEXT N_( \
     "You can set the maximum height that the configuration windows in the " \
     "preferences menu will occupy.")
index 72f5d562466f1921a747ae3785557b7e3700b9d3..af6f4524d57db8eee4f6d5a465346974d179ca51 100644 (file)
@@ -2,7 +2,7 @@
  * macosx.m: MacOS X plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001-2003 VideoLAN
- * $Id: macosx.m,v 1.9 2003/05/09 01:19:43 hartman Exp $
+ * $Id: macosx.m,v 1.10 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Colin Delacroix <colin@zoy.org>
  *          Eugenio Jarosiewicz <ej0@cise.ufl.edu>
@@ -44,14 +44,14 @@ void E_(CloseVideo)   ( vlc_object_t * );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define VDEV_TEXT N_("video device")
+#define VDEV_TEXT N_("Video device")
 
-#define OPAQUENESS_TEXT N_("opaqueness")
+#define OPAQUENESS_TEXT N_("Opaqueness")
 #define OPAQUENESS_LONGTEXT N_( \
     "Set the transparency of the video output. 1 is non-transparent (default) " \
     "0 is fully transparent.")
     
-#define FLOAT_TEXT N_("float on top")
+#define FLOAT_TEXT N_("Float on top")
 #define FLOAT_LONGTEXT N_( \
     "Let the video window float on top of other windows.")
 
index b0fd112c4dc8f70ba4ef891603be4a62adb0b2d1..3c3de8c8267f408e6d56583dc75d1fcd32fc2e2a 100644 (file)
@@ -2,7 +2,7 @@
  * win32.cpp : Win32 interface plugin for vlc\r
  *****************************************************************************\r
  * Copyright (C) 2002-2003 VideoLAN\r
- * $Id: win32.cpp,v 1.18 2003/03/30 18:14:38 gbazin Exp $\r
+ * $Id: win32.cpp,v 1.19 2003/05/15 22:27:37 massiot Exp $\r
  *\r
  * Authors: Olivier Teulière <ipkiss@via.ecp.fr>\r
  *\r
@@ -299,11 +299,11 @@ int Win32Manage( intf_thread_t *p_intf )
  * Module descriptor\r
  *****************************************************************************/\r
 \r
-#define MAX_LINES_TEXT N_( "maximum number of lines in the log window" )\r
+#define MAX_LINES_TEXT N_( "Maximum number of lines in the log window" )\r
 #define MAX_LINES_LONGTEXT N_( \\r
     "You can set the maximum number of lines that the log window will display."\\r
     " Enter -1 if you want to keep all messages." )\r
-#define SHOW_CAPTIONS_TEXT N_( "display text under images in the toolbar" )\r
+#define SHOW_CAPTIONS_TEXT N_( "Display text under images in the toolbar" )\r
 #define SHOW_CAPTIONS_LONGTEXT N_( \\r
     "Check this option if you want to display the caption of the buttons in " \\r
     "the toolbar. Beware, the display may be messed up" )\r
index e9e701417ab0f46de6e12b11f726382a48011883..f7f7803c9f2145ff332d90df89c0cb40cb694f87 100644 (file)
@@ -2,7 +2,7 @@
  * dummy.c : dummy plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001 VideoLAN
- * $Id: dummy.c,v 1.6 2003/05/04 22:42:17 gbazin Exp $
+ * $Id: dummy.c,v 1.7 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define CHROMA_TEXT N_("dummy image chroma format")
+#define CHROMA_TEXT N_("Dummy image chroma format")
 #define CHROMA_LONGTEXT N_( \
     "Force the dummy video output to create images using a specific chroma " \
     "format instead of trying to improve performances by using the most " \
     "efficient one.")
 
 #ifdef WIN32
-#define QUIET_TEXT N_("don't open a dos command box interface")
+#define QUIET_TEXT N_("Don't open a dos command box interface")
 #define QUIET_LONGTEXT N_( \
     "By default the dummy interface plugin will start a dos command box. " \
     "Enabling the quiet mode will not bring this command box but can also " \
index 2f274d99cb02470c0f420476de3124331a30fd20..69ca66b56627c760716be20b40e4f00fb6a7fb4d 100644 (file)
@@ -2,7 +2,7 @@
  * logger.c : file logging plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: logger.c,v 1.7 2003/03/30 18:14:38 gbazin Exp $
+ * $Id: logger.c,v 1.8 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -82,8 +82,9 @@ static void HtmlPrint         ( const msg_item_t *, FILE * );
  * Module descriptor
  *****************************************************************************/
 static char *mode_list[] = { "text", "html", NULL };
-#define LOGMODE_TEXT N_("log format")
+#define LOGMODE_TEXT N_("Log format")
 #define LOGMODE_LONGTEXT N_("Specify the log format. Available choices are \"text\" (default) and \"html\"")
+
 vlc_module_begin();
     add_category_hint( N_("Miscellaneous"), NULL, VLC_FALSE );
     add_file( "logfile", NULL, NULL, N_("log filename"), N_("Specify the log filename."), VLC_FALSE );
index e43aa77e110b3a1120ae980b505147a88c634c44..105dd41f9f4e3f9243d83c17d03655377ad954da 100644 (file)
@@ -2,7 +2,7 @@
  * adjust.c : Contrast/Hue/Saturation/Brightness video plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: adjust.c,v 1.11 2003/03/18 23:30:28 gbazin Exp $
+ * $Id: adjust.c,v 1.12 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Simon Latapie <garf@via.ecp.fr>
  *
@@ -57,13 +57,13 @@ static int  SendEvents( vlc_object_t *, char const *,
  * Module descriptor
  *****************************************************************************/
 
-#define CONT_TEXT N_("set image contrast")
+#define CONT_TEXT N_("Set image contrast")
 #define CONT_LONGTEXT N_("Set the image contrast. Defaults to 1")
-#define HUE_TEXT N_("set image hue")
+#define HUE_TEXT N_("Set image hue")
 #define HUE_LONGTEXT N_("Set the image hue, between 0 and 360. Defaults to 0")
-#define SAT_TEXT N_("set image saturation")
+#define SAT_TEXT N_("Set image saturation")
 #define SAT_LONGTEXT N_("Set the image saturation. Defaults to 1")
-#define LUM_TEXT N_("set image brightness")
+#define LUM_TEXT N_("Set image brightness")
 #define LUM_LONGTEXT N_("Set the image brightness. Defaults to 1")
 
 
index 1e0bf351e6cb164837fb3771aa549d32278822ce..b1d4325457ea5a07565ae9b505c9b45299d659de 100644 (file)
@@ -2,7 +2,7 @@
  * clone.c : Clone video plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002, 2003 VideoLAN
- * $Id: clone.c,v 1.9 2003/03/30 18:14:38 gbazin Exp $
+ * $Id: clone.c,v 1.10 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -52,11 +52,11 @@ static int  SendEvents( vlc_object_t *, char const *,
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define COUNT_TEXT N_("number of clones")
+#define COUNT_TEXT N_("Number of clones")
 #define COUNT_LONGTEXT N_("Select the number of video windows in which to "\
     "clone the video")
 
-#define VOUTLIST_TEXT N_("list of vout modules")
+#define VOUTLIST_TEXT N_("List of vout modules")
 #define VOUTLIST_LONGTEXT N_("Select the specific vout modules that you want to activate")
 
 vlc_module_begin();
index 62331de5ff8b97b5d047f2c2ccaab09803086077..506b719e1eb3e605dc85d9557fae9fa65f48f872 100644 (file)
@@ -2,7 +2,7 @@
  * crop.c : Crop video plugin for vlc
  *****************************************************************************
  * Copyright (C) 2002, 2003 VideoLAN
- * $Id: crop.c,v 1.10 2003/03/30 18:14:38 gbazin Exp $
+ * $Id: crop.c,v 1.11 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -51,10 +51,10 @@ static int  SendEvents( vlc_object_t *, char const *,
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define GEOMETRY_TEXT N_("crop geometry")
+#define GEOMETRY_TEXT N_("Crop geometry")
 #define GEOMETRY_LONGTEXT N_("Set the geometry of the zone to crop")
 
-#define AUTOCROP_TEXT N_("automatic cropping")
+#define AUTOCROP_TEXT N_("Automatic cropping")
 #define AUTOCROP_LONGTEXT N_("Activate automatic black border cropping")
 
 vlc_module_begin();
index 280afed9909221c5f842295de452a18d13d069f1..202220e07335ae78a735cd6aa2ad3deb853c64d8 100644 (file)
@@ -2,7 +2,7 @@
  * deinterlace.c : deinterlacer plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: deinterlace.c,v 1.11 2003/03/30 18:14:38 gbazin Exp $
+ * $Id: deinterlace.c,v 1.12 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -72,8 +72,8 @@ static int FilterCallback ( vlc_object_t *, char const *,
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define MODE_TEXT N_("deinterlace mode")
-#define MODE_LONGTEXT N_("you can choose the default deinterlace mode")
+#define MODE_TEXT N_("Deinterlace mode")
+#define MODE_LONGTEXT N_("You can choose the default deinterlace mode")
 
 static char *mode_list[] = { "discard", "blend", "mean", "bob", "linear", NULL };
 
index ad3911c16d33800ef4119be8053d23a29a651788..1569de7a21ad8d1a8068b33f63410ff6e36a461e 100644 (file)
@@ -2,7 +2,7 @@
  * distort.c : Misc video effects plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: distort.c,v 1.9 2003/03/30 18:14:38 gbazin Exp $
+ * $Id: distort.c,v 1.10 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -56,7 +56,7 @@ static int  SendEvents   ( vlc_object_t *, char const *,
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define MODE_TEXT N_("distort mode")
+#define MODE_TEXT N_("Distort mode")
 #define MODE_LONGTEXT N_("Distort mode, one of \"wave\" and \"ripple\"")
 
 static char *mode_list[] = { "wave", "ripple", NULL };
index f63f8181a04123a01b39b03cda2393cb85f551ac..b53ec569e45f882b72f5fe0564665da2374c499b 100644 (file)
@@ -2,7 +2,7 @@
  * motion_blur.c : motion blur filter for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: motionblur.c,v 1.10 2003/03/30 18:14:38 gbazin Exp $
+ * $Id: motionblur.c,v 1.11 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  *
@@ -51,7 +51,7 @@ static int  SendEvents( vlc_object_t *, char const *,
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define MODE_TEXT N_("blur factor")
+#define MODE_TEXT N_("Blur factor")
 #define MODE_LONGTEXT N_("The degree of blurring from 1 to 127")
 
 vlc_module_begin();
index 819f8a518c9497bdeaa6ec065541c2afdaa20b20..5a8a4a3f8c6d02f34c4d1b52d6614636e3f08476 100644 (file)
@@ -2,7 +2,7 @@
  * transform.c : transform image plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: transform.c,v 1.11 2003/03/30 18:14:38 gbazin Exp $
+ * $Id: transform.c,v 1.12 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -54,7 +54,7 @@ static int  SendEvents( vlc_object_t *, char const *,
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define TYPE_TEXT N_("transform type")
+#define TYPE_TEXT N_("Transform type")
 #define TYPE_LONGTEXT N_("One of '90', '180', '270', 'hflip' and 'vflip'")
 
 static char *type_list[] = { "90", "180", "270", "hflip", "vflip", NULL };
index f907474727b523a99d1f73380e9fcc533af1f6e9..ce94b3359b7baf5b7b61650734ffcf965922320b 100644 (file)
@@ -2,7 +2,7 @@
  * wall.c : Wall video plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: wall.c,v 1.9 2003/03/30 18:14:38 gbazin Exp $
+ * $Id: wall.c,v 1.10 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -50,15 +50,15 @@ static int  SendEvents( vlc_object_t *, char const *,
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define COLS_TEXT N_("number of columns")
+#define COLS_TEXT N_("Number of columns")
 #define COLS_LONGTEXT N_("Select the number of horizontal videowindows in " \
     "which to split the video")
 
-#define ROWS_TEXT N_("number of rows")
+#define ROWS_TEXT N_("Number of rows")
 #define ROWS_LONGTEXT N_("Select the number of vertical videowindows in " \
     "which to split the video")
 
-#define ACTIVE_TEXT N_("active windows")
+#define ACTIVE_TEXT N_("Active windows")
 #define ACTIVE_LONGTEXT N_("comma separated list of active windows, " \
     "defaults to all")
 
index 9046438f4600de47ed632421e04c7f500682daf6..88e6a42fb436ca30b702dd32095fca4f4831fcd1 100644 (file)
@@ -2,7 +2,7 @@
  * vout.c: Windows DirectX video output display method
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: directx.c,v 1.18 2003/05/05 16:09:37 gbazin Exp $
+ * $Id: directx.c,v 1.19 2003/05/15 22:27:37 massiot Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -87,19 +87,19 @@ static int  DirectXUnlockSurface  ( vout_thread_t *p_vout, picture_t *p_pic );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define ON_TOP_TEXT N_("always on top")
-#define ON_TOP_LONGTEXT N_("place the directx window on top of other windows")
-#define HW_YUV_TEXT N_("use hardware YUV->RGB conversions")
+#define ON_TOP_TEXT N_("Always on top")
+#define ON_TOP_LONGTEXT N_("Place the directx window on top of other windows")
+#define HW_YUV_TEXT N_("Use hardware YUV->RGB conversions")
 #define HW_YUV_LONGTEXT N_( \
     "Try to use hardware acceleration for YUV->RGB conversions. " \
     "This option doesn't have any effect when using overlays." )
-#define SYSMEM_TEXT N_("use video buffers in system memory")
+#define SYSMEM_TEXT N_("Use video buffers in system memory")
 #define SYSMEM_LONGTEXT N_( \
     "Create video buffers in system memory instead of video memory. This " \
     "isn't recommended as usually using video memory allows to benefit from " \
     "more hardware acceleration (like rescaling or YUV->RGB conversions). " \
     "This option doesn't have any effect when using overlays." )
-#define TRIPLEBUF_TEXT N_("use triple buffering for overlays")
+#define TRIPLEBUF_TEXT N_("Use triple buffering for overlays")
 #define TRIPLEBUF_LONGTEXT N_( \
     "Try to use triple bufferring when using YUV overlays. That results in " \
     "much better video quality (no flickering)." )
index dcb85f7be757fbed2b43036b95befd92152d45d0..4f3be16d27cd629c39157137cedf1b5eeaddc826 100644 (file)
@@ -2,7 +2,7 @@
  * xmga.c : X11 MGA plugin for vlc
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: xmga.c,v 1.5 2003/05/05 16:09:37 gbazin Exp $
+ * $Id: xmga.c,v 1.6 2003/05/15 22:27:38 massiot Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -84,7 +84,7 @@ static void ToggleCursor   ( vout_thread_t * );
  * Module descriptor
  *****************************************************************************/
 
-#define ALT_FS_TEXT N_("alternate fullscreen method")
+#define ALT_FS_TEXT N_("Alternate fullscreen method")
 #define ALT_FS_LONGTEXT N_( \
     "There are two ways to make a fullscreen window, unfortunately each one " \
     "has its drawbacks.\n" \
index 46342259fb1686ab7efc0fc114e40a586e1b8931..41d0d519db154a7b30f711ea6974b9fe6e67685e 100644 (file)
@@ -2,7 +2,7 @@
  * x11.c : X11 plugin for vlc
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: x11.c,v 1.6 2003/03/30 18:14:39 gbazin Exp $
+ * $Id: x11.c,v 1.7 2003/05/15 22:27:38 massiot Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -40,7 +40,7 @@ extern void E_(Deactivate) ( vlc_object_t * );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define ALT_FS_TEXT N_("alternate fullscreen method")
+#define ALT_FS_TEXT N_("Alternate fullscreen method")
 #define ALT_FS_LONGTEXT N_( \
     "There are two ways to make a fullscreen window, unfortunately each one " \
     "has its drawbacks.\n" \
@@ -54,7 +54,7 @@ extern void E_(Deactivate) ( vlc_object_t * );
     "Specify the X11 hardware display you want to use. By default VLC will " \
     "use the value of the DISPLAY environment variable.")
 
-#define SHM_TEXT N_("use shared memory")
+#define SHM_TEXT N_("Use shared memory")
 #define SHM_LONGTEXT N_( \
     "Use shared memory to communicate between VLC and the X server.")
 
index 72cdeafe88805e9ba90f02e93ee61df97c49ef83..8eb324416429018f0ffc8c6d04a3342d6cc1341c 100644 (file)
@@ -2,7 +2,7 @@
  * xvideo.c : Xvideo plugin for vlc
  *****************************************************************************
  * Copyright (C) 1998-2001 VideoLAN
- * $Id: xvideo.c,v 1.6 2003/03/30 18:14:39 gbazin Exp $
+ * $Id: xvideo.c,v 1.7 2003/05/15 22:27:38 massiot Exp $
  *
  * Authors: Shane Harper <shanegh@optusnet.com.au>
  *          Vincent Seguin <seguin@via.ecp.fr>
@@ -46,7 +46,7 @@ extern void E_(Deactivate) ( vlc_object_t * );
     "If you graphics card provides several adaptors, this option allows you " \
     "to choose which one will be used (you shouldn't have to change this).")
 
-#define ALT_FS_TEXT N_("alternate fullscreen method")
+#define ALT_FS_TEXT N_("Alternate fullscreen method")
 #define ALT_FS_LONGTEXT N_( \
     "There are two ways to make a fullscreen window, unfortunately each one " \
     "has its drawbacks.\n" \
@@ -65,7 +65,7 @@ extern void E_(Deactivate) ( vlc_object_t * );
     "Force the XVideo renderer to use a specific chroma format instead of " \
     "trying to improve performances by using the most efficient one.")
 
-#define SHM_TEXT N_("use shared memory")
+#define SHM_TEXT N_("Use shared memory")
 #define SHM_LONGTEXT N_( \
     "Use shared memory to communicate between VLC and the X server.")
 
index 136e20baea2aa19a25015781f33a5f1582e92bdb..72b7fbfc70b77937ab001a18d4485149b52c63a4 100644 (file)
@@ -2,7 +2,7 @@
  * xosd.c : X On Screen Display interface
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: xosd.c,v 1.9 2003/03/30 18:14:39 gbazin Exp $
+ * $Id: xosd.c,v 1.10 2003/05/15 22:27:38 massiot Exp $
  *
  * Authors: Loïc Minier <lool@videolan.org>
  *
@@ -58,17 +58,17 @@ static void Run          ( intf_thread_t * );
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
-#define POSITION_TEXT N_("flip vertical position")
+#define POSITION_TEXT N_("Flip vertical position")
 #define POSITION_LONGTEXT N_("Display xosd output on the bottom of the " \
                              "screen instead of the top")
 
-#define TXT_OFS_TEXT N_("vertical offset")
+#define TXT_OFS_TEXT N_("Vertical offset")
 #define TXT_OFS_LONGTEXT N_("Vertical offset in pixels of the displayed text")
 
-#define SHD_OFS_TEXT N_("shadow offset")
+#define SHD_OFS_TEXT N_("Shadow offset")
 #define SHD_OFS_LONGTEXT N_("Offset in pixels of the shadow")
 
-#define FONT_TEXT N_("font")
+#define FONT_TEXT N_("Font")
 #define FONT_LONGTEXT N_("Font used to display text in the xosd output")
 
 vlc_module_begin();