Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
d5791c9c
Commit
d5791c9c
authored
May 15, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* now 0.6.0-cvs
* ALL: Capitalize all preferences text strings
parent
90296a25
Changes
41
Hide whitespace changes
Inline
Side-by-side
Showing
41 changed files
with
127 additions
and
126 deletions
+127
-126
configure.ac.in
configure.ac.in
+2
-2
extras/MacOSX/Resources/English.lproj/InfoPlist.strings
extras/MacOSX/Resources/English.lproj/InfoPlist.strings
+2
-2
extras/MacOSX/vlc.pbproj/project.pbxproj
extras/MacOSX/vlc.pbproj/project.pbxproj
+3
-3
modules/access/dvd/dvd.c
modules/access/dvd/dvd.c
+2
-2
modules/access/file.c
modules/access/file.c
+2
-2
modules/access/ftp.c
modules/access/ftp.c
+2
-2
modules/access/http.c
modules/access/http.c
+3
-3
modules/access/mms/mms.c
modules/access/mms/mms.c
+2
-2
modules/access/satellite/satellite.c
modules/access/satellite/satellite.c
+8
-8
modules/access/slp.c
modules/access/slp.c
+2
-2
modules/access/v4l/v4l.c
modules/access/v4l/v4l.c
+2
-2
modules/audio_filter/channel_mixer/headphone.c
modules/audio_filter/channel_mixer/headphone.c
+2
-2
modules/audio_output/coreaudio.c
modules/audio_output/coreaudio.c
+2
-2
modules/audio_output/file.c
modules/audio_output/file.c
+7
-7
modules/audio_output/oss.c
modules/audio_output/oss.c
+2
-2
modules/codec/mpeg_video/parser.c
modules/codec/mpeg_video/parser.c
+4
-4
modules/codec/spudec/spudec.c
modules/codec/spudec/spudec.c
+2
-2
modules/control/http.c
modules/control/http.c
+3
-3
modules/control/rc/rc.c
modules/control/rc/rc.c
+3
-3
modules/demux/demuxdump.c
modules/demux/demuxdump.c
+3
-3
modules/demux/mpeg/ts.c
modules/demux/mpeg/ts.c
+3
-3
modules/gui/familiar/familiar.c
modules/gui/familiar/familiar.c
+3
-3
modules/gui/gtk/gnome.c
modules/gui/gtk/gnome.c
+4
-4
modules/gui/gtk/gtk.c
modules/gui/gtk/gtk.c
+3
-3
modules/gui/macosx/macosx.m
modules/gui/macosx/macosx.m
+4
-4
modules/gui/win32/win32.cpp
modules/gui/win32/win32.cpp
+3
-3
modules/misc/dummy/dummy.c
modules/misc/dummy/dummy.c
+3
-3
modules/misc/logger/logger.c
modules/misc/logger/logger.c
+3
-2
modules/video_filter/adjust.c
modules/video_filter/adjust.c
+5
-5
modules/video_filter/clone.c
modules/video_filter/clone.c
+3
-3
modules/video_filter/crop.c
modules/video_filter/crop.c
+3
-3
modules/video_filter/deinterlace/deinterlace.c
modules/video_filter/deinterlace/deinterlace.c
+3
-3
modules/video_filter/distort.c
modules/video_filter/distort.c
+2
-2
modules/video_filter/motionblur.c
modules/video_filter/motionblur.c
+2
-2
modules/video_filter/transform.c
modules/video_filter/transform.c
+2
-2
modules/video_filter/wall.c
modules/video_filter/wall.c
+4
-4
modules/video_output/directx/directx.c
modules/video_output/directx/directx.c
+6
-6
modules/video_output/mga/xmga.c
modules/video_output/mga/xmga.c
+2
-2
modules/video_output/x11/x11.c
modules/video_output/x11/x11.c
+3
-3
modules/video_output/x11/xvideo.c
modules/video_output/x11/xvideo.c
+3
-3
modules/visualization/xosd/xosd.c
modules/visualization/xosd/xosd.c
+5
-5
No files found.
configure.ac.in
View file @
d5791c9c
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
...
...
extras/MacOSX/Resources/English.lproj/InfoPlist.strings
View file @
d5791c9c
/* 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.";
extras/MacOSX/vlc.pbproj/project.pbxproj
View file @
d5791c9c
...
...
@@ -415,7 +415,7 @@
<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>
...
...
@@ -427,7 +427,7 @@
<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>
...
...
@@ -474,7 +474,7 @@
</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>
...
...
modules/access/dvd/dvd.c
View file @
d5791c9c
...
...
@@ -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_("
m
ethod to use by libdvdcss for key decryption")
#define CSSMETHOD_TEXT N_("
M
ethod 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 " \
...
...
modules/access/file.c
View file @
d5791c9c
...
...
@@ -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_("
c
aching value in ms")
#define CACHING_TEXT N_("
C
aching 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." )
...
...
modules/access/ftp.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* ftp.c:
*****************************************************************************
* Copyright (C) 2001-2003 VideoLAN
* $Id: ftp.c,v 1.1
8 2003/05/08 19:51:38 fenrir
Exp $
* $Id: ftp.c,v 1.1
9 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_("
c
aching value in ms")
#define CACHING_TEXT N_("
C
aching 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." )
...
...
modules/access/http.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* http.c: HTTP access plug-in
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: http.c,v 1.3
4 2003/04/30 09:11:13 gbazin
Exp $
* $Id: http.c,v 1.3
5 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_("
s
pecify an HTTP proxy")
#define PROXY_TEXT N_("
S
pecify 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_("
c
aching value in ms")
#define CACHING_TEXT N_("
C
aching 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." )
...
...
modules/access/mms/mms.c
View file @
d5791c9c
...
...
@@ -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.3
3 2003/05/06 02:01:35 fenrir
Exp $
* $Id: mms.c,v 1.3
4 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_("
c
aching value in ms")
#define CACHING_TEXT N_("
C
aching 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." )
...
...
modules/access/satellite/satellite.c
View file @
d5791c9c
...
...
@@ -38,28 +38,28 @@ void E_(Close) ( vlc_object_t * );
* Module descriptor
*****************************************************************************/
#define FREQ_TEXT N_("
s
atellite default transponder frequency")
#define FREQ_TEXT N_("
S
atellite default transponder frequency")
#define FREQ_LONGTEXT ""
#define POL_TEXT N_("
s
atellite default transponder polarization")
#define POL_TEXT N_("
S
atellite default transponder polarization")
#define POL_LONGTEXT ""
#define FEC_TEXT N_("
s
atellite default transponder FEC")
#define FEC_TEXT N_("
S
atellite default transponder FEC")
#define FEC_LONGTEXT ""
#define SRATE_TEXT N_("
s
atellite default transponder symbol rate")
#define SRATE_TEXT N_("
S
atellite default transponder symbol rate")
#define SRATE_LONGTEXT ""
#define DISEQC_TEXT N_("
u
se diseqc with antenna")
#define DISEQC_TEXT N_("
U
se diseqc with antenna")
#define DISEQC_LONGTEXT ""
#define LNB_LOF1_TEXT N_("
a
ntenna lnb_lof1 (kHz)")
#define LNB_LOF1_TEXT N_("
A
ntenna lnb_lof1 (kHz)")
#define LNB_LOF1_LONGTEXT ""
#define LNB_LOF2_TEXT N_("
a
ntenna lnb_lof2 (kHz)")
#define LNB_LOF2_TEXT N_("
A
ntenna lnb_lof2 (kHz)")
#define LNB_LOF2_LONGTEXT ""
#define LNB_SLOF_TEXT N_("
a
ntenna lnb_slof (kHz)")
#define LNB_SLOF_TEXT N_("
A
ntenna lnb_slof (kHz)")
#define LNB_SLOF_LONGTEXT ""
vlc_module_begin
();
...
...
modules/access/slp.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* slp.c: SLP access plugin
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: slp.c,v 1.1
0 2003/03/30 18:14:35 gbazin
Exp $
* $Id: slp.c,v 1.1
1 2003/05/15 22:27:36 massiot
Exp $
*
* Authors: Loc 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 "
l
anguage requested in SLP requests"
#define LANG_TEXT "
L
anguage 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"
...
...
modules/access/v4l/v4l.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* v4l.c : Video4Linux input module for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: v4l.c,v 1.1
5 2003/05/08 19:26:59 fenrir
Exp $
* $Id: v4l.c,v 1.1
6 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_("
c
aching value in ms")
#define CACHING_TEXT N_("
C
aching 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." )
...
...
modules/audio_filter/channel_mixer/headphone.c
View file @
d5791c9c
...
...
@@ -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 Dors <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_("
c
haracteristic dimension")
#define HEADPHONE_DIM_TEXT N_("
C
haracteristic dimension")
#define HEADPHONE_DIM_LONGTEXT N_( \
"Headphone virtual spatialization effect parameter: "\
"distance between front left speaker and listener in meters.")
...
...
modules/audio_output/coreaudio.c
View file @
d5791c9c
...
...
@@ -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_("
a
udio device")
#define ADEV_TEXT N_("
A
udio device")
vlc_module_begin
();
set_description
(
_
(
"CoreAudio output"
)
);
...
...
modules/audio_output/file.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* file.c : audio output which writes the samples to a file
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: file.c,v 1.2
1 2003/04/20 22:52:03 gbazin
Exp $
* $Id: file.c,v 1.2
2 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_("
o
utput format")
#define FORMAT_LONGTEXT N_("
o
ne of \"u8\", \"s8\", \"u16\", \"s16\", " \
#define FORMAT_TEXT N_("
O
utput format")
#define FORMAT_LONGTEXT N_("
O
ne of \"u8\", \"s8\", \"u16\", \"s16\", " \
"\"u16_le\", \"s16_le\", \"u16_be\", " \
"\"s16_be\", \"fixed32\", \"float32\" or \"spdif\"")
#define WAV_TEXT N_("
a
dd wave header")
#define WAV_LONGTEXT N_("
i
nstead of writing a raw file, you can add a wav " \
#define WAV_TEXT N_("
A
dd wave header")
#define WAV_LONGTEXT N_("
I
nstead 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_("
o
utput file")
#define FILE_LONGTEXT N_("
f
ile to which the audio samples will be written to")
#define FILE_TEXT N_("
O
utput file")
#define FILE_LONGTEXT N_("
F
ile to which the audio samples will be written to")
vlc_module_begin
();
add_category_hint
(
N_
(
"Audio"
),
NULL
,
VLC_FALSE
);
...
...
modules/audio_output/oss.c
View file @
d5791c9c
...
...
@@ -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_("
t
ry to work around buggy OSS drivers")
#define BUGGY_TEXT N_("
T
ry 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 " \
...
...
modules/codec/mpeg_video/parser.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* video_parser.c : video parser thread
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: parser.c,v 1.1
2 2003/03/30 18:14:36 gbazin
Exp $
* $Id: parser.c,v 1.1
3 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_("
m
otion compensation module")
#define VDEC_MOTION_TEXT N_("
M
otion 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_("
u
se additional processors")
#define VDEC_SMP_TEXT N_("
U
se 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_("
f
orce synchro algorithm {I|I+|IP|IP+|IPB}")
#define VPAR_SYNCHRO_TEXT N_("
F
orce 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 " \
...
...
modules/codec/spudec/spudec.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* spudec.c : SPU decoder thread
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: spudec.c,v 1.1
7 2003/03/30 18:14:37 gbazin
Exp $
* $Id: spudec.c,v 1.1
8 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_("
f
ont used by the text subtitler")
#define FONT_TEXT N_("
F
ont 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.")
...
...
modules/control/http.c
View file @
d5791c9c
...
...
@@ -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" )
...
...
modules/control/rc/rc.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* rc.c : remote control stdin/stdout plugin for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: rc.c,v 1.3
3 2003/05/13 12:09:29 gbazin
Exp $
* $Id: rc.c,v 1.3
4 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_("
s
how stream position")
#define POS_TEXT N_("
S
how stream position")
#define POS_LONGTEXT N_("Show the current position in seconds within the stream from time to time.")
#define TTY_TEXT N_("
f
ake TTY")
#define TTY_TEXT N_("
F
ake TTY")
#define TTY_LONGTEXT N_("Force the rc plugin to use stdin as if it was a TTY.")
vlc_module_begin
();
...
...
modules/demux/demuxdump.c
View file @
d5791c9c
...
...
@@ -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_("
d
ump file name")
#define FILE_TEXT N_("
D
ump file name")
#define FILE_LONGTEXT N_( \
"
s
pecify a file name to which the raw stream will be dumped." )
"
S
pecify a file name to which the raw stream will be dumped." )
vlc_module_begin
();
set_description
(
_
(
"file dump demuxer"
)
);
...
...
modules/demux/mpeg/ts.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* mpeg_ts.c : Transport Stream input module for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: ts.c,v 1.2
3 2003/05/06 21:01:58 gbazin
Exp $
* $Id: ts.c,v 1.2
4 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_("
c
ompatibility with pre-0.4 VLS")
#define VLS_BACKWARDS_COMPAT_TEXT N_("
C
ompatibility 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_("
b
uggy PSI")
#define BUGGY_PSI_TEXT N_("
B
uggy PSI")
#define BUGGY_PSI_LONGTEXT N_( \
"If you have a stream whose PSI packets do not feature incremented " \
"continuity counters, select this option.")
...
...
modules/gui/familiar/familiar.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* familiar.c : familiar plugin for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: familiar.c,v 1.3
4 2003/03/30 18:14:37 gbazin
Exp $
* $Id: familiar.c,v 1.3
5 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_("
a
utoplay selected file")
#define AUTOPLAYFILE_LONGTEXT N_("
a
utomatically play a file when selected in the "\
#define AUTOPLAYFILE_TEXT N_("
A
utoplay selected file")
#define AUTOPLAYFILE_LONGTEXT N_("
A
utomatically play a file when selected in the "\
"file selection list")
/*****************************************************************************
...
...
modules/gui/gtk/gnome.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* gnome.c : Gnome plugin for vlc
*****************************************************************************
* Copyright (C) 2000 VideoLAN
* $Id: gnome.c,v 1.1
5 2003/03/30 18:14:37 gbazin
Exp $
* $Id: gnome.c,v 1.1
6 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_("
s
how tooltips")
#define TOOLTIPS_TEXT N_("
S
how tooltips")
#define TOOLTIPS_LONGTEXT N_("Show tooltips for configuration options.")
#define TOOLBAR_TEXT N_("
s
how text on toolbar buttons")
#define TOOLBAR_TEXT N_("
S
how text on toolbar buttons")
#define TOOLBAR_LONGTEXT N_("Show the text below icons on the toolbar.")
#define PREFS_MAXH_TEXT N_("
m
aximum height for the configuration windows")
#define PREFS_MAXH_TEXT N_("
M
aximum 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.")
...
...
modules/gui/gtk/gtk.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* gtk.c : Gtk+ plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: gtk.c,v 1.2
0 2003/03/30 18:14:37 gbazin
Exp $
* $Id: gtk.c,v 1.2
1 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_("
s
how tooltips")
#define TOOLTIPS_TEXT N_("
S
how tooltips")
#define TOOLTIPS_LONGTEXT N_("Show tooltips for configuration options.")
#define PREFS_MAXH_TEXT N_("
m
aximum height for the configuration windows")
#define PREFS_MAXH_TEXT N_("
M
aximum 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.")
...
...
modules/gui/macosx/macosx.m
View file @
d5791c9c
...
...
@@ -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_("
v
ideo device")
#define VDEV_TEXT N_("
V
ideo device")
#define OPAQUENESS_TEXT N_("
o
paqueness")
#define OPAQUENESS_TEXT N_("
O
paqueness")
#define OPAQUENESS_LONGTEXT N_( \
"Set the transparency of the video output. 1 is non-transparent (default) " \
"0 is fully transparent.")
#define FLOAT_TEXT N_("
f
loat on top")
#define FLOAT_TEXT N_("
F
loat on top")
#define FLOAT_LONGTEXT N_( \
"Let the video window float on top of other windows.")
...
...
modules/gui/win32/win32.cpp
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* win32.cpp : Win32 interface plugin for vlc
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: win32.cpp,v 1.1
8 2003/03/30 18:14:38 gbazin
Exp $
* $Id: win32.cpp,v 1.1
9 2003/05/15 22:27:37 massiot
Exp $
*
* Authors: Olivier Teulire <ipkiss@via.ecp.fr>
*
...
...
@@ -299,11 +299,11 @@ int Win32Manage( intf_thread_t *p_intf )
* Module descriptor
*****************************************************************************/
#define MAX_LINES_TEXT N_( "
m
aximum number of lines in the log window" )
#define MAX_LINES_TEXT N_( "
M
aximum number of lines in the log window" )
#define MAX_LINES_LONGTEXT N_( \
"You can set the maximum number of lines that the log window will display."
\
" Enter -1 if you want to keep all messages."
)
#define SHOW_CAPTIONS_TEXT N_( "
d
isplay text under images in the toolbar" )
#define SHOW_CAPTIONS_TEXT N_( "
D
isplay text under images in the toolbar" )
#define SHOW_CAPTIONS_LONGTEXT N_( \
"Check this option if you want to display the caption of the buttons in "
\
"the toolbar. Beware, the display may be messed up"
)
...
...
modules/misc/dummy/dummy.c
View file @
d5791c9c
...
...
@@ -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>
*
...
...
@@ -34,14 +34,14 @@
/*****************************************************************************
* Module descriptor
*****************************************************************************/
#define CHROMA_TEXT N_("
d
ummy image chroma format")
#define CHROMA_TEXT N_("
D
ummy 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_("
d
on't open a dos command box interface")
#define QUIET_TEXT N_("
D
on'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 " \
...
...
modules/misc/logger/logger.c
View file @
d5791c9c
...
...
@@ -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_("
l
og format")
#define LOGMODE_TEXT N_("
L
og 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
);
...
...
modules/video_filter/adjust.c
View file @
d5791c9c
...
...
@@ -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.1
1 2003/03/18 23:30:28 gbazin
Exp $
* $Id: adjust.c,v 1.1
2 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_("
s
et image contrast")
#define CONT_TEXT N_("
S
et image contrast")
#define CONT_LONGTEXT N_("Set the image contrast. Defaults to 1")
#define HUE_TEXT N_("
s
et image hue")
#define HUE_TEXT N_("
S
et image hue")
#define HUE_LONGTEXT N_("Set the image hue, between 0 and 360. Defaults to 0")
#define SAT_TEXT N_("
s
et image saturation")
#define SAT_TEXT N_("
S
et image saturation")
#define SAT_LONGTEXT N_("Set the image saturation. Defaults to 1")
#define LUM_TEXT N_("
s
et image brightness")
#define LUM_TEXT N_("
S
et image brightness")
#define LUM_LONGTEXT N_("Set the image brightness. Defaults to 1")
...
...
modules/video_filter/clone.c
View file @
d5791c9c
...
...
@@ -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_("
n
umber of clones")
#define COUNT_TEXT N_("
N
umber of clones")
#define COUNT_LONGTEXT N_("Select the number of video windows in which to "\
"clone the video")
#define VOUTLIST_TEXT N_("
l
ist of vout modules")
#define VOUTLIST_TEXT N_("
L
ist of vout modules")
#define VOUTLIST_LONGTEXT N_("Select the specific vout modules that you want to activate")
vlc_module_begin
();
...
...
modules/video_filter/crop.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* crop.c : Crop video plugin for vlc
*****************************************************************************
* Copyright (C) 2002, 2003 VideoLAN
* $Id: crop.c,v 1.1
0 2003/03/30 18:14:38 gbazin
Exp $
* $Id: crop.c,v 1.1
1 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_("
c
rop geometry")
#define GEOMETRY_TEXT N_("
C
rop geometry")
#define GEOMETRY_LONGTEXT N_("Set the geometry of the zone to crop")
#define AUTOCROP_TEXT N_("
a
utomatic cropping")
#define AUTOCROP_TEXT N_("
A
utomatic cropping")
#define AUTOCROP_LONGTEXT N_("Activate automatic black border cropping")
vlc_module_begin
();
...
...
modules/video_filter/deinterlace/deinterlace.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* deinterlace.c : deinterlacer plugin for vlc
*****************************************************************************
* Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
* $Id: deinterlace.c,v 1.1
1 2003/03/30 18:14:38 gbazin
Exp $
* $Id: deinterlace.c,v 1.1
2 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_("
d
einterlace mode")
#define MODE_LONGTEXT N_("
y
ou can choose the default deinterlace mode")
#define MODE_TEXT N_("
D
einterlace mode")
#define MODE_LONGTEXT N_("
Y
ou can choose the default deinterlace mode")
static
char
*
mode_list
[]
=
{
"discard"
,
"blend"
,
"mean"
,
"bob"
,
"linear"
,
NULL
};
...
...
modules/video_filter/distort.c
View file @
d5791c9c
...
...
@@ -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_("
d
istort mode")
#define MODE_TEXT N_("
D
istort mode")
#define MODE_LONGTEXT N_("Distort mode, one of \"wave\" and \"ripple\"")
static
char
*
mode_list
[]
=
{
"wave"
,
"ripple"
,
NULL
};
...
...
modules/video_filter/motionblur.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* motion_blur.c : motion blur filter for vlc
*****************************************************************************
* Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
* $Id: motionblur.c,v 1.1
0 2003/03/30 18:14:38 gbazin
Exp $
* $Id: motionblur.c,v 1.1
1 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_("
b
lur factor")
#define MODE_TEXT N_("
B
lur factor")
#define MODE_LONGTEXT N_("The degree of blurring from 1 to 127")
vlc_module_begin
();
...
...
modules/video_filter/transform.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* transform.c : transform image plugin for vlc
*****************************************************************************
* Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
* $Id: transform.c,v 1.1
1 2003/03/30 18:14:38 gbazin
Exp $
* $Id: transform.c,v 1.1
2 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_("
t
ransform type")
#define TYPE_TEXT N_("
T
ransform type")
#define TYPE_LONGTEXT N_("One of '90', '180', '270', 'hflip' and 'vflip'")
static
char
*
type_list
[]
=
{
"90"
,
"180"
,
"270"
,
"hflip"
,
"vflip"
,
NULL
};
...
...
modules/video_filter/wall.c
View file @
d5791c9c
...
...
@@ -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_("
n
umber of columns")
#define COLS_TEXT N_("
N
umber of columns")
#define COLS_LONGTEXT N_("Select the number of horizontal videowindows in " \
"which to split the video")
#define ROWS_TEXT N_("
n
umber of rows")
#define ROWS_TEXT N_("
N
umber of rows")
#define ROWS_LONGTEXT N_("Select the number of vertical videowindows in " \
"which to split the video")
#define ACTIVE_TEXT N_("
a
ctive windows")
#define ACTIVE_TEXT N_("
A
ctive windows")
#define ACTIVE_LONGTEXT N_("comma separated list of active windows, " \
"defaults to all")
...
...
modules/video_output/directx/directx.c
View file @
d5791c9c
...
...
@@ -2,7 +2,7 @@
* vout.c: Windows DirectX video output display method
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: directx.c,v 1.1
8 2003/05/05 16:09:37 gbazin
Exp $
* $Id: directx.c,v 1.1
9 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_("
a
lways on top")
#define ON_TOP_LONGTEXT N_("
p
lace the directx window on top of other windows")
#define HW_YUV_TEXT N_("
u
se hardware YUV->RGB conversions")
#define ON_TOP_TEXT N_("
A
lways on top")
#define ON_TOP_LONGTEXT N_("
P
lace the directx window on top of other windows")
#define HW_YUV_TEXT N_("
U
se 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_("
u
se video buffers in system memory")
#define SYSMEM_TEXT N_("
U
se 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_("
u
se triple buffering for overlays")
#define TRIPLEBUF_TEXT N_("
U
se 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)." )
...
...
modules/video_output/mga/xmga.c
View file @
d5791c9c
...
...
@@ -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_("
a
lternate fullscreen method")
#define ALT_FS_TEXT N_("
A
lternate fullscreen method")
#define ALT_FS_LONGTEXT N_( \
"There are two ways to make a fullscreen window, unfortunately each one " \
"has its drawbacks.\n" \
...
...
modules/video_output/x11/x11.c
View file @
d5791c9c
...
...
@@ -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_("
a
lternate fullscreen method")
#define ALT_FS_TEXT N_("
A
lternate 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_("
u
se shared memory")
#define SHM_TEXT N_("
U
se shared memory")
#define SHM_LONGTEXT N_( \
"Use shared memory to communicate between VLC and the X server.")
...
...
modules/video_output/x11/xvideo.c
View file @
d5791c9c
...
...
@@ -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_("
a
lternate fullscreen method")
#define ALT_FS_TEXT N_("
A
lternate 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_("
u
se shared memory")
#define SHM_TEXT N_("
U
se shared memory")
#define SHM_LONGTEXT N_( \
"Use shared memory to communicate between VLC and the X server.")
...
...
modules/visualization/xosd/xosd.c
View file @
d5791c9c
...
...
@@ -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: Loc Minier <lool@videolan.org>
*
...
...
@@ -58,17 +58,17 @@ static void Run ( intf_thread_t * );
/*****************************************************************************
* Module descriptor
*****************************************************************************/
#define POSITION_TEXT N_("
f
lip vertical position")
#define POSITION_TEXT N_("
F
lip vertical position")
#define POSITION_LONGTEXT N_("Display xosd output on the bottom of the " \
"screen instead of the top")
#define TXT_OFS_TEXT N_("
v
ertical offset")
#define TXT_OFS_TEXT N_("
V
ertical offset")
#define TXT_OFS_LONGTEXT N_("Vertical offset in pixels of the displayed text")
#define SHD_OFS_TEXT N_("
s
hadow offset")
#define SHD_OFS_TEXT N_("
S
hadow offset")
#define SHD_OFS_LONGTEXT N_("Offset in pixels of the shadow")
#define FONT_TEXT N_("
f
ont")
#define FONT_TEXT N_("
F
ont")
#define FONT_LONGTEXT N_("Font used to display text in the xosd output")
vlc_module_begin
();
...
...
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