Commit 0643c47e authored by Gildas Bazin's avatar Gildas Bazin

* Tagged the 0.8.0 release.

parents 80ee1f38 cab0e6fb
------------------------------------------------------------------------
r9123 | sam | 2004-11-03 00:51:21 +0100 (Wed, 03 Nov 2004) | 2 lines
Changed paths:
M /trunk/modules/access/cdda/cdda.c
M /trunk/po/de.po
M /trunk/po/en_GB.po
M /trunk/po/es.po
M /trunk/po/fr.po
M /trunk/po/hu.po
M /trunk/po/it.po
M /trunk/po/ja.po
M /trunk/po/nl.po
M /trunk/po/no.po
M /trunk/po/pl.po
M /trunk/po/pt_BR.po
M /trunk/po/ru.po
M /trunk/po/sv.po
M /trunk/po/vlc.pot
* modules/access/cdda/cdda.c: Spelling fix.
------------------------------------------------------------------------
r9122 | gbazin | 2004-11-03 00:43:41 +0100 (Wed, 03 Nov 2004) | 1 line
Changed paths:
M /trunk/configure.ac
* configure.ac: added normvol to the list of plugins.
------------------------------------------------------------------------
r9121 | gbazin | 2004-11-03 00:42:08 +0100 (Wed, 03 Nov 2004) | 1 line
Changed paths:
M /trunk/modules/audio_filter/normvol.c
* modules/audio_filter/normvol.c: compilation fix (C99ism).
------------------------------------------------------------------------
r9120 | hartman | 2004-11-03 00:41:36 +0100 (Wed, 03 Nov 2004) | 2 lines
Changed paths:
M /trunk/extras/contrib/src/Makefile
* Disable cddb, libcdio and vcdimager building on OSX, since basically they aren't used yet on OS X. (guarding for unused 3rd party libraries)
------------------------------------------------------------------------
r9119 | gbazin | 2004-11-03 00:40:20 +0100 (Wed, 03 Nov 2004) | 1 line
Changed paths:
M /trunk/src/misc/variables.c
* src/misc/variables.c: fixed bug (config_GetPsz() can return NULL).
------------------------------------------------------------------------
r9117 | sam | 2004-11-02 23:29:07 +0100 (Tue, 02 Nov 2004) | 3 lines
Changed paths:
M /trunk/src/misc/modules.c
* src/misc/modules:
+ Only consider psz_program when looking for an interface plugin.
------------------------------------------------------------------------
r9116 | hartman | 2004-11-02 22:35:54 +0100 (Tue, 02 Nov 2004) | 3 lines
Changed paths:
M /trunk/extras/contrib/src/Makefile
A /trunk/extras/contrib/src/Patches/kasenna.patch
* kasenna patch for OS X. cheating while i can :)
patch is for the 2004.10.28a version of vlc
------------------------------------------------------------------------
r9115 | hartman | 2004-11-02 21:59:41 +0100 (Tue, 02 Nov 2004) | 2 lines
Changed paths:
M /trunk/extras/contrib/src/packages.mak
* newer liveMedia version for OSX.
------------------------------------------------------------------------
r9114 | hartman | 2004-11-02 21:52:45 +0100 (Tue, 02 Nov 2004) | 3 lines
Changed paths:
M /trunk/modules/demux/subtitle.c
* fixed a problem with sub-fps overriding
If subtitle format doesn't have their own reference, they should define 25fps as the the standard reference, BUT NOT GLOBALLY. Cause then ALL subtitle formats will use this correction factor of 25fps.
------------------------------------------------------------------------
r9112 | gbazin | 2004-11-02 20:25:31 +0100 (Tue, 02 Nov 2004) | 1 line
Changed paths:
M /trunk/ChangeLog
* ChangeLog: updated for the 0.8.0 release.
------------------------------------------------------------------------
r9111 | gbazin | 2004-11-02 20:23:40 +0100 (Tue, 02 Nov 2004) | 1 line
Changed paths:
M /trunk/modules/gui/wxwindows/interface.cpp
......@@ -949,7 +949,7 @@ VLC_ADD_PLUGINS([cvdsub svcdsub spudec subsdec dvbsub mpeg_audio lpcm a52 dts ci
VLC_ADD_PLUGINS([deinterlace invert adjust wall transform distort clone crop motionblur])
VLC_ADD_PLUGINS([float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif fixed32tofloat32 fixed32tos16 s16tofixed32 s16tofloat32 s16tofloat32swab s8tofloat32 u8tofixed32 u8tofloat32 audio_format])
VLC_ADD_PLUGINS([trivial_resampler ugly_resampler linear_resampler bandlimited_resampler])
VLC_ADD_PLUGINS([trivial_channel_mixer simple_channel_mixer headphone_channel_mixer])
VLC_ADD_PLUGINS([trivial_channel_mixer simple_channel_mixer headphone_channel_mixer normvol])
VLC_ADD_PLUGINS([trivial_mixer spdif_mixer float32_mixer])
VLC_ADD_PLUGINS([aout_file equalizer])
VLC_ADD_PLUGINS([i420_rgb i420_yuy2 i422_yuy2 i420_ymga])
......
......@@ -55,7 +55,7 @@ all: .autoconf .libtool .automake .iconv .intl .pkgcfg .freetype .fribidi \
.a52 .mpeg2 .id3tag .mad .ogg .vorbis .vorbisenc .theora \
.FLAC .speex .faad .faac .lame .ebml .matroska .ffmpeg .openslp \
.dvdcss .dvdread .dvdnav .dvbpsi .live .goom2k4 .caca .mod \
.cddb .cdio .vcdimager .png
.png
endif
ifeq ($(SYS),BEOS)
all: .perl .autoconf .libtool .automake .iconv .intl .freetype .fribidi \
......@@ -759,6 +759,7 @@ live.$(LIVEDOTCOM_VERSION).tar.gz:
live: live.$(LIVEDOTCOM_VERSION).tar.gz
$(EXTRACT_GZ)
patch -p 0 < Patches/live.patch
patch -p 0 < Patches/kasenna.patch
.live: live
(cd $<; ./genmakefiles macosx && make )
......@@ -987,6 +988,24 @@ CLEAN_FILE += .png
CLEAN_PKG += libpng
DISCLEAN_PKG += libpng-$(PNG_VERSION).tar.bz2
# ***************************************************************************
# libzvbi
# ***************************************************************************
zvbi-$(ZVBI_VERSION).tar.bz2:
$(WGET) $(ZVBI_URL)
zvbi: zvbi-$(ZVBI_VERSION).tar.bz2
$(EXTRACT_BZ2)
.zvbi: zvbi
(cd $<; ./configure --prefix=$(PREFIX) && make )
touch $@
CLEAN_FILE += .zvbi
CLEAN_PKG += zvbi
DISCLEAN_PKG += zvbi-$(ZVBI_VERSION).tar.bz2
# ***************************************************************************
# Some cleansing
# ***************************************************************************
......
This diff is collapsed.
......@@ -88,7 +88,7 @@ LIBDVDNAV_VERSION=0.1.10
LIBDVDNAV_URL=$(VIDEOLAN)/testing/contrib/libdvdnav-$(LIBDVDNAV_VERSION).tar.gz
LIBDVBPSI_VERSION=0.1.4
LIBDVBPSI_URL=$(VIDEOLAN)/libdvbpsi/$(LIBDVBPSI_VERSION)/libdvbpsi3-$(LIBDVBPSI_VERSION).tar.gz
LIVEDOTCOM_VERSION=2004.10.04
LIVEDOTCOM_VERSION=2004.10.28a
LIVEDOTCOM_URL=$(VIDEOLAN)/testing/contrib/live.$(LIVEDOTCOM_VERSION).tar.gz
#GOOM_URL=$(VIDEOLAN)/testing/contrib/goom-macosx-altivec-bin.tar.gz
GOOM2k4_VERSION=dev21
......@@ -111,3 +111,4 @@ TOOLAME_VERSION=02m-beta8
TOOLAME_URL=$(VIDEOLAN)/testing/contrib/toolame-$(TOOLAME_VERSION).tar.bz2
PNG_VERSION=1.2.5
PNG_URL=$(VIDEOLAN)/testing/contrib/libpng-$(PNG_VERSION).tar.bz2
......@@ -161,9 +161,9 @@ VLC_EXPORT( void, intf_Destroy, ( intf_thread_t * ) );
#define INTF_ABOUT_MSG \
_( "VLC is an open-source and cross-platform multimedia " \
"player for various audio and video formats (MPEG-1, MPEG-2, MPEG-4, " \
"DivX, mp3, Ogg, ...) as well as DVDs, VCDs, CD audio, and various " \
"DivX, mp3, Ogg, etc.) as well as DVDs, VCDs, CD audio, and various " \
"streaming protocols.\n\n" \
"VLC is also a streaming server with transcoding capabilities " \
"(UDP unicast and multicast, HTTP, ...) mainly designed for " \
"(UDP unicast and multicast, HTTP, etc.) mainly designed for " \
"high-bandwidth networks.\n\n"\
"For more information, have a look at the web site." )
......@@ -54,7 +54,7 @@
#define BLOCKS_PER_READ_LONGTEXT N_( \
"Allows you to specify how many CD blocks to get on a single CD read. " \
"Generally on newer/faster CD's, this increases throughput at the " \
"Generally on newer/faster CDs, this increases throughput at the " \
"expense of a little more memory usage and initial delay. SCSI-MMC " \
"limitations generally don't allow for more than 25 blocks per access.")
......
......@@ -2,7 +2,7 @@
* normvol.c : volume normalizer
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: equalizer.c,v 1.21 2003/07/31 23:44:49 zorglub Exp $
* $Id$
*
* Authors: Clment Stenac <zorglub@videolan.org>
*
......@@ -56,11 +56,12 @@ static void Close ( vlc_object_t * );
static void DoWork ( aout_instance_t * , aout_filter_t *,
aout_buffer_t * , aout_buffer_t *);
struct aout_filter_sys_t {
typedef struct aout_filter_sys_t
{
int i_nb;
float *p_last;
float f_max;
};
} aout_filter_sys_t;
/*****************************************************************************
* Module descriptor
......@@ -79,10 +80,11 @@ struct aout_filter_sys_t {
vlc_module_begin();
set_description( _("Volume normalizer") );
add_shortcut("volnorm");
add_integer("norm-buff-size" , 20 , NULL , BUFF_TEXT, BUFF_LONGTEXT,
VLC_TRUE);
add_float("norm-max-level",2.0,NULL,LEVEL_TEXT,LEVEL_LONGTEXT,VLC_TRUE);
add_shortcut( "volnorm" );
add_integer( "norm-buff-size", 20 ,NULL ,BUFF_TEXT, BUFF_LONGTEXT,
VLC_TRUE);
add_float( "norm-max-level", 2.0, NULL, LEVEL_TEXT,
LEVEL_LONGTEXT, VLC_TRUE );
set_capability( "audio filter", 0 );
set_callbacks( Open, Close );
vlc_module_end();
......@@ -93,9 +95,9 @@ vlc_module_end();
static int Open( vlc_object_t *p_this )
{
aout_filter_t *p_filter = (aout_filter_t*)p_this;
struct aout_filter_sys_t *p_sys = p_filter->p_sys =
malloc( sizeof( struct aout_filter_sys_t ) );
int i_channels;
aout_filter_sys_t *p_sys = p_filter->p_sys =
malloc( sizeof( aout_filter_sys_t ) );
if( p_filter->input.i_format != VLC_FOURCC('f','l','3','2' ) ||
p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )
......@@ -113,21 +115,18 @@ static int Open( vlc_object_t *p_this )
p_filter->pf_do_work = DoWork;
p_filter->b_in_place = VLC_TRUE;
int i_channels = aout_FormatNbChannels( &p_filter->input );
i_channels = aout_FormatNbChannels( &p_filter->input );
p_sys->i_nb = var_CreateGetInteger( p_filter->p_parent, "norm-buff-size" );
p_sys->i_nb = var_CreateGetInteger( p_filter->p_parent, "norm-buff-size" );
p_sys->f_max = var_CreateGetFloat( p_filter->p_parent, "norm-max-level" );
if( p_sys->f_max <= 0 )
{
p_sys->f_max = 0.01;
}
if( p_sys->f_max <= 0 ) p_sys->f_max = 0.01;
/* We need to store (nb_buffers+1)*nb_channels floats */
p_sys->p_last = malloc( sizeof( float ) * (i_channels) *
(p_filter->p_sys->i_nb + 2) );
memset( p_sys->p_last, 0 , sizeof( float ) * (i_channels) *
(p_filter->p_sys->i_nb + 2) );
memset( p_sys->p_last, 0 ,sizeof( float ) * (i_channels) *
(p_filter->p_sys->i_nb + 2) );
return VLC_SUCCESS;
}
......@@ -157,9 +156,9 @@ static int Open( vlc_object_t *p_this )
p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes;
/* Calculate the average power level on this buffer */
for( i = 0 ; i < i_samples; i++ )
{
/* Calculate the average power level on this buffer */
for( i = 0 ; i < i_samples; i++ )
{
for( i_chan = 0; i_chan < i_channels; i_chan++ )
{
float f_sample = p_in[i_chan];
......@@ -167,11 +166,11 @@ static int Open( vlc_object_t *p_this )
pf_sum[i_chan] += f_square;
}
p_in += i_channels;
}
}
/* sum now contains for each channel the sigma(value) */
for( i_chan = 0; i_chan < i_channels; i_chan++ )
{
/* sum now contains for each channel the sigma(value) */
for( i_chan = 0; i_chan < i_channels; i_chan++ )
{
/* Shift our lastbuff */
memmove( &p_sys->p_last[ i_chan * p_sys->i_nb],
&p_sys->p_last[i_chan * p_sys->i_nb + 1],
......@@ -194,7 +193,7 @@ static int Open( vlc_object_t *p_this )
/* Seuil arbitraire */
p_sys->f_max = var_GetFloat( p_aout, "norm-max-level" );
// fprintf(stderr,"Average %f, max %f\n", f_average, p_sys->f_max );
//fprintf(stderr,"Average %f, max %f\n", f_average, p_sys->f_max );
if( f_average > p_sys->f_max )
{
pf_gain[i_chan] = f_average / p_sys->f_max;
......@@ -206,7 +205,7 @@ static int Open( vlc_object_t *p_this )
}
/* Apply gain */
for( i = 0 ; i < i_samples ; i++)
for( i = 0; i < i_samples; i++)
{
for( i_chan = 0; i_chan < i_channels; i_chan++ )
{
......@@ -227,14 +226,11 @@ static int Open( vlc_object_t *p_this )
static void Close( vlc_object_t *p_this )
{
aout_filter_t *p_filter = (aout_filter_t*)p_this;
struct aout_filter_sys_t *p_sys = p_filter->p_sys;
aout_filter_sys_t *p_sys = p_filter->p_sys;
if( p_sys )
{
if( p_sys->p_last)
{
free( p_sys->p_last );
}
if( p_sys->p_last) free( p_sys->p_last );
free( p_sys );
}
}
......@@ -190,12 +190,15 @@ static int Open ( vlc_object_t *p_this )
/* Get the FPS */
p_sys->i_microsecperframe = 40000; /* default to 25 fps */
f_fps = var_CreateGetFloat( p_demux, "sub-fps" );
if( f_fps >= 1.0 )
{
p_sys->i_microsecperframe = (int64_t)( (float)1000000 / f_fps );
}
else
{
p_sys->i_microsecperframe = 0;
}
f_fps = var_CreateGetFloat( p_demux, "sub-original-fps" );
if( f_fps >= 1.0 )
......@@ -680,6 +683,10 @@ static int ParseMicroDvd( demux_t *p_demux, subtitle_t *p_subtitle )
int i_stop;
unsigned int i;
int i_microsecperframe = 40000; /* default to 25 fps */
if( p_sys->i_microsecperframe > 0 )
i_microsecperframe = p_sys->i_microsecperframe;
p_subtitle->i_start = 0;
p_subtitle->i_stop = 0;
p_subtitle->psz_text = NULL;
......@@ -709,8 +716,8 @@ static int ParseMicroDvd( demux_t *p_demux, subtitle_t *p_subtitle )
}
}
p_subtitle->i_start = (int64_t)i_start * p_sys->i_microsecperframe;
p_subtitle->i_stop = (int64_t)i_stop * p_sys->i_microsecperframe;
p_subtitle->i_start = (int64_t)i_start * i_microsecperframe;
p_subtitle->i_stop = (int64_t)i_stop * i_microsecperframe;
p_subtitle->psz_text = strndup( buffer_text, MAX_LINE );
return( 0 );
}
......
......@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: 2004-08-06 21:09+0100\n"
"Last-Translator: Felix Kühne <fkuehne@users.sf.net>\n"
"Language-Team: German\n"
......@@ -238,11 +238,11 @@ msgstr ""
#: include/vlc_interface.h:162
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -726,8 +726,8 @@ msgstr "Interface wechseln"
msgid "Add Interface"
msgstr "Interface hinzufügen"
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr "de"
......@@ -955,7 +955,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -1089,7 +1089,7 @@ msgstr ""
#: src/libvlc.h:151
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
"Dies erlaubt Ihnen Audionachbearbeitungsfilter hinzuzufügen, um den Klang "
"zuverändern oder Audiovisualisierungsmodule (Spektrumanalysierer...) zu "
......@@ -1112,7 +1112,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
"Diese Optionen erlauben Ihnen das Verhalten des Videoausgabeuntersystems zu "
......@@ -1476,16 +1476,16 @@ msgstr "Lesezeichenliste für einen Stream"
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
"Sie können eine Liste von Lesezeichen für einen Stream in der Form "
"\"{name=Lesezeichenname,time=optionaler-Zeitversatz,bytes=optionaler-"
"Byteversatz},{etc...}\" festlegen."
"Byteversatz},{...}\" festlegen."
#: src/libvlc.h:322
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -3453,7 +3453,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -5102,11 +5102,11 @@ msgstr "Techno"
msgid "audio filter for PCM format conversion"
msgstr "Audiofilter für PCM-Format-Konvertierung"
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
msgid "Number of audio buffers"
msgstr "Anzahl von Audiopuffern"
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
......@@ -5117,11 +5117,11 @@ msgstr ""
"einen hohen Ausschlag vergrößern, macht ihn aber weniger sensibel gegenüber "
"kurzen Variationen."
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
msgid "Max level"
msgstr "Maximales Niveau"
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
......@@ -5131,7 +5131,7 @@ msgstr ""
"dieser Wert ist, wird die Lautstärke normalisiert. Dieser Wert ist eine "
"positive Fließkommazahl. Ein Wert zwischen 0.5 und 10 erscheint sinnvoll."
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
msgid "Volume normalizer"
msgstr "Lautstärkennormalisierer"
......
......@@ -18,7 +18,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: 2002-04-22 09:56+0200\n"
"Last-Translator: Sam Hocevar <sam@zoy.org>\n"
"Language-Team: \n"
......@@ -246,11 +246,11 @@ msgstr ""
#, fuzzy
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -738,8 +738,8 @@ msgstr "Switch interface"
msgid "Add Interface"
msgstr "Add Interface"
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr "en_GB"
......@@ -964,7 +964,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -1093,7 +1093,7 @@ msgstr ""
#: src/libvlc.h:151
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualisation modules (spectrum analyser, …)."
......@@ -1114,7 +1114,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
"These options allow you to modify the behaviour of the video output "
......@@ -1470,16 +1470,16 @@ msgstr ""
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc.}\""
"{...}\""
#: src/libvlc.h:322
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -3417,7 +3417,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -5063,30 +5063,30 @@ msgstr ""
msgid "audio filter for PCM format conversion"
msgstr ""
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
#, fuzzy
msgid "Number of audio buffers"
msgstr "Number of threads"
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
"a high power but will make it less sensitive to short variations."
msgstr ""
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
msgid "Max level"
msgstr ""
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
"value between 0.5 and 10 seems sensible."
msgstr ""
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
#, fuzzy
msgid "Volume normalizer"
msgstr "Visualisations"
......
......@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: 2004-10-21 01:40+0100\n"
"Last-Translator: Antonio Javier Varela Calvo <tonxabar@hotmail.com>\n"
"Language-Team: Spanish-English\n"
......@@ -230,11 +230,11 @@ msgstr ""
#: include/vlc_interface.h:162
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -719,8 +719,8 @@ msgstr "Cambiar interfaz"
msgid "Add Interface"
msgstr "Añadir Interfaz"
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr "es"
......@@ -945,7 +945,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -1073,10 +1073,10 @@ msgstr ""
#: src/libvlc.h:151
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
"Esto te permite añadir filtros de postproceso de audio, para modificar el "
"sonido, o módulos de visualización de audio (analizador espectral, ..)."
"sonido, o módulos de visualización de audio (analizador espectral, ...)."
#: src/libvlc.h:154
msgid "Channel mixer"
......@@ -1095,7 +1095,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
"Estas opciones te permiten modificar el comportamiento del subsistema de "
......@@ -1450,16 +1450,16 @@ msgstr "Lista de favoritos para un volcado"
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
"Puedes especificar una lista de favoritos para un volcado en la forma "
"\"{name=nombre-de-enlace,time=tiempo-de-desplazamiento-opcional,bytes=byte-"
"offset-opcional}{etc...}\""
"offset-opcional}{...}\""
#: src/libvlc.h:322
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -3415,7 +3415,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -5045,11 +5045,11 @@ msgstr "Tecno"
msgid "audio filter for PCM format conversion"
msgstr "filtro de audio para conversión formato PCM"
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
msgid "Number of audio buffers"
msgstr "Número de buffers de audio"
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
......@@ -5059,11 +5059,11 @@ msgstr ""
"Un número mayor de buffers aumentará el tiempo de respuesta del filtro a una "
"alta potencia pero lo hará menos sensible a variaciones cortas."
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
msgid "Max level"
msgstr "Nivel máx"
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
......@@ -5073,7 +5073,7 @@ msgstr ""
"volumen se normalizará. Este valor es un número positivo de punto flotante. "
"Un "
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
msgid "Volume normalizer"
msgstr "Normalizador de volumen"
......
......@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: 2001-12-10 13:32+0100\n"
"Last-Translator: Clément Stenac <zorglub@videolan.org> 2003-12-04\n"
"Language-Team: French\n"
......@@ -223,9 +223,10 @@ msgid "No help is available for these modules"
msgstr "Aucune aide n’est disponible pour ces modules"
#: include/vlc_interface.h:129
#, fuzzy
msgid ""
"\n"
"Warning: if you cant access the GUI anymore, open a dos command box, go to "
"Warning: if you can't access the GUI anymore, open a dos command box, go to "
"the directory where you installed VLC and run \"vlc -I wxwin\"\n"
msgstr ""
"\n"
......@@ -236,11 +237,11 @@ msgstr ""
#: include/vlc_interface.h:162
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -724,8 +725,8 @@ msgstr "Changer d’interface"
msgid "Add Interface"
msgstr "Ajouter une interface"
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr "Fr"
......@@ -954,7 +955,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -1085,7 +1086,7 @@ msgstr ""
#: src/libvlc.h:151
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
"Ceci permet d’ajouter des filtres de postprocessing audio pour modifier le "
"son, ou des modules de visualisation audio (analyseur de spectre…)."
......@@ -1107,7 +1108,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
"Ces options permettent de modifier des réglages relatifs à l’affichage vidéo."
......@@ -1467,16 +1468,16 @@ msgstr "Liste des signets pour un flux"
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
"Vous pouvez spécifier une liste de signets pour un flux sous la forme "
"« {name=nom-du-signet,time=date-facultative,bytes=position-facultative-en-"
"octets},{etc.} »"
"octets},{} »"
#: src/libvlc.h:322
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -1809,8 +1810,8 @@ msgid ""
"specified)"
msgstr ""
"Ceci permet de garder une instance unique du flux de sortie tout au long de "
"la liste de lecture (insère automatiquement le module de flux de sortie "
"« regroupement » si non spécifié)."
"la liste de lecture (insère automatiquement le module de flux de sortie « "
"regroupement » si non spécifié)."
#: src/libvlc.h:488
msgid "Preferred packetizer list"
......@@ -3488,7 +3489,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -5143,11 +5144,11 @@ msgstr "Techno"
msgid "audio filter for PCM format conversion"
msgstr "Filtre audio de conversion de formats PCM"
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
msgid "Number of audio buffers"
msgstr "Nombre de tampons audio"
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
......@@ -5158,11 +5159,11 @@ msgstr ""
"filtre à un pic de puissance, mais le rendra moins sensible à de petites "
"variations."
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
msgid "Max level"
msgstr "Niveau maximal"
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
......@@ -5172,7 +5173,7 @@ msgstr ""
"volume sera normalisé. La valeur est un nombre en virgule flottante positif. "
"Une valeur entre 0.5 et 10 semble correcte."
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
msgid "Volume normalizer"
msgstr "Normaliseur de volume"
......@@ -6868,8 +6869,8 @@ msgstr "Interface de commande à distance temps réel"
#, c-format
msgid "Real time control interface initialized, `h' for help\n"
msgstr ""
"Interface de commande à distance temps réel initialisée, « h » pour obtenir de "
"l’aide.\n"
"Interface de commande à distance temps réel initialisée, « h » pour obtenir "
"de l’aide.\n"
#: modules/control/showintf.c:62
#, fuzzy
......@@ -13152,8 +13153,8 @@ msgstr "Interface XOSD"
#~ "this cube transparent."
#~ msgstr ""
#~ "Utilisez « None » pour afficher la vidéo sans effet fantaisiste, « Cube » "
#~ "pour que la vidéo soit jouée sur les faces d’un cube en mouvement, "
#~ "« Transparent Cube » pour que ce cube soit transparent."
#~ "pour que la vidéo soit jouée sur les faces d’un cube en mouvement, « "
#~ "Transparent Cube » pour que ce cube soit transparent."
#~ msgid "Last skin actually used"
#~ msgstr "Dernière skin utilisée"
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VLAN\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: 2003-10-26 02:54+0100\n"
"Last-Translator: DirektX <DirektX @ freemail.hu>\n"
"Language-Team: DirektX <DirektX @ freemail.hu>\n"
......@@ -218,11 +218,11 @@ msgstr ""
#: include/vlc_interface.h:162
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -720,8 +720,8 @@ msgstr "Kezel
msgid "Add Interface"
msgstr "Kezelfellet"
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr ""
......@@ -933,7 +933,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -1049,7 +1049,7 @@ msgstr ""
#: src/libvlc.h:151
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
#: src/libvlc.h:154
......@@ -1067,7 +1067,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
......@@ -1386,13 +1386,13 @@ msgstr ""
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
#: src/libvlc.h:322
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -3309,7 +3309,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -4829,29 +4829,29 @@ msgstr ""
msgid "audio filter for PCM format conversion"
msgstr ""
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
msgid "Number of audio buffers"
msgstr ""
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
"a high power but will make it less sensitive to short variations."
msgstr ""
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
msgid "Max level"
msgstr ""
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
"value between 0.5 and 10 seems sensible."
msgstr ""
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
msgid "Volume normalizer"
msgstr ""
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: 2004-05-02 17:45+0200\n"
"Last-Translator: Carlo Calabrò\n"
"Language-Team: Italian <it@li.org>\n"
......@@ -235,11 +235,11 @@ msgstr ""
#: include/vlc_interface.h:162
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -723,8 +723,8 @@ msgstr "Cambia interfaccia"
msgid "Add Interface"
msgstr "Aggiungi interfaccia"
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr "it"
......@@ -951,7 +951,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -1082,7 +1082,7 @@ msgstr ""
#: src/libvlc.h:151
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
"Permette di aggiungere filtri audio, per modificare il suono, oppure moduli "
"di visualizzazione (analisi spettrale, per esempio)."
......@@ -1103,7 +1103,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
"Queste opzioni permettono di modificare il comportamento dell'uscita video. "
......@@ -1467,16 +1467,16 @@ msgstr "Lista di segnalibri per uno stream"
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
"E' possibile specificare dei segnalibri per uno stream, nel formato "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
#: src/libvlc.h:322
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -3427,7 +3427,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -5067,11 +5067,11 @@ msgstr "Techno"
msgid "audio filter for PCM format conversion"
msgstr "filtro audio per la conversione di formato PCM"
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
msgid "Number of audio buffers"
msgstr "Numero di buffer audio"
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
......@@ -5081,11 +5081,11 @@ msgstr ""
"aumenta il tempo di risposta del filtro alle alte potenze, ma lo rende meno "
"sensibile alle variazioni rapide."
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
msgid "Max level"
msgstr "Livello massimo"
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
......@@ -5095,7 +5095,7 @@ msgstr ""
"il volume verrà normalizzato. Il valore deve essere un numero positivo in "
"virgola mobile; un valore ragionevole può essere compreso tra 0.5 e 10."
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
msgid "Volume normalizer"
msgstr "Volume normalizzato"
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ja\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: 2004-09-20 02:46+0900\n"
"Last-Translator: Tadashi Jokagi <elf2000@users.sourceforge.net>\n"
"Language-Team: Japanese <ja@li.org>\n"
......@@ -219,11 +219,11 @@ msgstr ""
#: include/vlc_interface.h:162
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -719,8 +719,8 @@ msgstr "
msgid "Add Interface"
msgstr "インタフェースを追加"
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr "ja"
......@@ -944,7 +944,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -1071,7 +1071,7 @@ msgstr ""
#: src/libvlc.h:151
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
#: src/libvlc.h:154
......@@ -1088,7 +1088,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
......@@ -1428,13 +1428,13 @@ msgstr ""
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
#: src/libvlc.h:322
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -3396,7 +3396,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -4984,31 +4984,31 @@ msgstr "
msgid "audio filter for PCM format conversion"
msgstr "float32->s8変換のためのオーディオ・フィルター"
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
#, fuzzy
msgid "Number of audio buffers"
msgstr "バンド数"
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
"a high power but will make it less sensitive to short variations."
msgstr ""
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
#, fuzzy
msgid "Max level"
msgstr "品質レベル"
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
"value between 0.5 and 10 seems sensible."
msgstr ""
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
msgid "Volume normalizer"
msgstr ""
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: 2004-05-16 00:41+0200\n"
"Last-Translator: Derk-Jan Hartman <hartman at videolan dot org>\n"
"Language-Team: Nederlands <www-doc@videolan.org>\n"
......@@ -234,11 +234,11 @@ msgstr ""
#: include/vlc_interface.h:162
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -720,8 +720,8 @@ msgstr "Wijzig interface"
msgid "Add Interface"
msgstr "Voeg Interface Toe"
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr "nl"
......@@ -950,7 +950,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -1074,7 +1074,7 @@ msgstr ""
#: src/libvlc.h:151
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
"Hiermee kunnen audio nabewerkingsfilters worden toegevoegd om het geluid te "
"bewerken, of modules voor visuele effecten (spectrum analyzer, etc)."
......@@ -1095,7 +1095,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
"Met deze instellingen kunnen opties voor de video uitvoer gewijzigd worden. "
......@@ -1450,16 +1450,16 @@ msgstr "Lijst van bladwijzers voor een stream."
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
"Je kan een lijst van bladwijzers aanleggen voor een stream in de volgende "
"vorm \"{name=bladwijzer-name,time=optionele-begintijd,bytes=optioneel-begin-"
"na-#bytes},{etc...}\""
"na-#bytes},{...}\""
#: src/libvlc.h:322
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -3414,7 +3414,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -5035,29 +5035,29 @@ msgstr "Techno"
msgid "audio filter for PCM format conversion"
msgstr "audio filter voor PCM conversie"
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
msgid "Number of audio buffers"
msgstr "Aantal audio buffers"
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
"a high power but will make it less sensitive to short variations."
msgstr ""
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
msgid "Max level"
msgstr ""
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
"value between 0.5 and 10 seems sensible."
msgstr ""
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
msgid "Volume normalizer"
msgstr "Volume uitbalancering"
......
......@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: 2003-04-06 12:32+0200\n"
"Last-Translator: Haakon Meland Eriksen <haakon.eriksen@far.no>\n"
"Language-Team: vlc <>\n"
......@@ -227,11 +227,11 @@ msgstr ""
#: include/vlc_interface.h:162
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -744,8 +744,8 @@ msgstr "_Gjem grensesnitt"
msgid "Add Interface"
msgstr "_Gjem grensesnitt"
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr "no"
......@@ -989,7 +989,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -1124,7 +1124,7 @@ msgstr ""
#: src/libvlc.h:151
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
#: src/libvlc.h:154
......@@ -1142,7 +1142,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
......@@ -1516,13 +1516,13 @@ msgstr ""
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
#: src/libvlc.h:322
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -3508,7 +3508,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -5087,31 +5087,31 @@ msgstr ""
msgid "audio filter for PCM format conversion"
msgstr "Lydfilter for triviell miksing av lydkanaler"
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
#, fuzzy
msgid "Number of audio buffers"
msgstr "Stopp strm"
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
"a high power but will make it less sensitive to short variations."
msgstr ""
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
#, fuzzy
msgid "Max level"
msgstr "Om"
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
"value between 0.5 and 10 seems sensible."
msgstr ""
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
#, fuzzy
msgid "Volume normalizer"
msgstr "_Navigasjon"
......
......@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: 2002-07-12 11:49+0100\n"
"Last-Translator: Arkadiusz Lipiec <alipiec@elka.pw.edu.pl>\n"
"Language-Team: polish <pl@li.org>\n"
......@@ -223,11 +223,11 @@ msgstr ""
#: include/vlc_interface.h:162
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -740,8 +740,8 @@ msgstr "interfejs sieciowy"
msgid "Add Interface"
msgstr "U_kryj interfejs"
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr "pl"
......@@ -976,7 +976,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -1109,7 +1109,7 @@ msgstr ""
#: src/libvlc.h:151
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
#: src/libvlc.h:154
......@@ -1127,7 +1127,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
......@@ -1489,13 +1489,13 @@ msgstr ""
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
#: src/libvlc.h:322
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -3464,7 +3464,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -5055,31 +5055,31 @@ msgstr ""
msgid "audio filter for PCM format conversion"
msgstr ""
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
#, fuzzy
msgid "Number of audio buffers"
msgstr "Liczba kolumn"
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
"a high power but will make it less sensitive to short variations."
msgstr ""
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
#, fuzzy
msgid "Max level"
msgstr "Informacje o..."
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
"value between 0.5 and 10 seems sensible."
msgstr ""
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
#, fuzzy
msgid "Volume normalizer"
msgstr "Polaryzacja"
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pt_BR\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: 2004-04-06 11:41-0300\n"
"Last-Translator: Andr de Barros Martins Ribeiro <andrerib@ajato.com.br>\n"
"Language-Team: Brazilian Portuguese\n"
......@@ -242,11 +242,11 @@ msgstr ""
#: include/vlc_interface.h:162
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -745,8 +745,8 @@ msgstr "Trocar a Interface"
msgid "Add Interface"
msgstr "Adicionar interface"
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr "Pt_br"
......@@ -973,7 +973,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -1105,7 +1105,7 @@ msgstr ""
#, fuzzy
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
"Isto permite que voc adicione filtros de ps-processamento de audio, para "
"modificar o som, ou os mdulos de visualizao (analizador de spectro,...)"
......@@ -1128,7 +1128,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
"Estas opes permitem que voc modifique o comportamento do subsistema de "
......@@ -1493,14 +1493,14 @@ msgstr ""
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
#: src/libvlc.h:322
#, fuzzy
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -3534,7 +3534,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -5218,31 +5218,31 @@ msgstr "Techno"
msgid "audio filter for PCM format conversion"
msgstr "Filtro de audio para converso de float32->s8"
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
#, fuzzy
msgid "Number of audio buffers"
msgstr "Nmero de faixas"
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
"a high power but will make it less sensitive to short variations."
msgstr ""
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
#, fuzzy
msgid "Max level"
msgstr "Qualidade:"
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
"value between 0.5 and 10 seems sensible."
msgstr ""
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
#, fuzzy
msgid "Volume normalizer"
msgstr "Visualizaes"
......
......@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: 2001-02-19 19:58+03:00\n"
"Last-Translator: Valek Filippov <frob@df.ru>\n"
"Language-Team: Russian <ru@li.org>\n"
......@@ -220,11 +220,11 @@ msgstr ""
#: include/vlc_interface.h:162
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -724,8 +724,8 @@ msgstr "
msgid "Add Interface"
msgstr " "
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr "ru"
......@@ -928,7 +928,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -1037,7 +1037,7 @@ msgstr ""
#: src/libvlc.h:151
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
#: src/libvlc.h:154
......@@ -1054,7 +1054,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
......@@ -1370,13 +1370,13 @@ msgstr ""
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
#: src/libvlc.h:322
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -3241,7 +3241,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -4758,30 +4758,30 @@ msgstr ""
msgid "audio filter for PCM format conversion"
msgstr ""
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
#, fuzzy
msgid "Number of audio buffers"
msgstr " "
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
"a high power but will make it less sensitive to short variations."
msgstr ""
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
msgid "Max level"
msgstr ""
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
"value between 0.5 and 10 seems sensible."
msgstr ""
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
msgid "Volume normalizer"
msgstr ""
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: 2002-07-23 23:00+0200\n"
"Last-Translator: Joel Arvidsson <dogai@privat.utfors.se>\n"
"Language-Team: \n"
......@@ -221,11 +221,11 @@ msgstr ""
#: include/vlc_interface.h:162
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -731,8 +731,8 @@ msgstr "G
msgid "Add Interface"
msgstr "Gm andra"
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr "sv"
......@@ -935,7 +935,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -1044,7 +1044,7 @@ msgstr ""
#: src/libvlc.h:151
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
#: src/libvlc.h:154
......@@ -1062,7 +1062,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
......@@ -1379,13 +1379,13 @@ msgstr ""
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
#: src/libvlc.h:322
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -3254,7 +3254,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -4782,31 +4782,31 @@ msgstr ""
msgid "audio filter for PCM format conversion"
msgstr ""
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
#, fuzzy
msgid "Number of audio buffers"
msgstr "Paus"
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
"a high power but will make it less sensitive to short variations."
msgstr ""
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
#, fuzzy
msgid "Max level"
msgstr "Avsluta VLC"
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
"value between 0.5 and 10 seems sensible."
msgstr ""
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
msgid "Volume normalizer"
msgstr ""
......
......@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-02 14:40+0100\n"
"POT-Creation-Date: 2004-11-03 00:50+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
......@@ -204,11 +204,11 @@ msgstr ""
#: include/vlc_interface.h:162
msgid ""
"VLC is an open-source and cross-platform multimedia player for various audio "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, ...) as well as "
"and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, Ogg, etc.) as well as "
"DVDs, VCDs, CD audio, and various streaming protocols.\n"
"\n"
"VLC is also a streaming server with transcoding capabilities (UDP unicast "
"and multicast, HTTP, ...) mainly designed for high-bandwidth networks.\n"
"and multicast, HTTP, etc.) mainly designed for high-bandwidth networks.\n"
"\n"
"For more information, have a look at the web site."
msgstr ""
......@@ -682,8 +682,8 @@ msgstr ""
msgid "Add Interface"
msgstr ""
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1628
#: src/misc/modules.c:1918
#: src/libvlc.c:285 src/libvlc.c:419 src/misc/modules.c:1629
#: src/misc/modules.c:1919
msgid "C"
msgstr ""
......@@ -882,7 +882,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the audio subsystem, and "
"to add audio filters which can be used for post processing or visual effects "
"(spectrum analyzer, ...).\n"
"(spectrum analyzer, etc.).\n"
"Enable these filters here, and configure them in the \"audio filters\" "
"modules section."
msgstr ""
......@@ -988,7 +988,7 @@ msgstr ""
#: src/libvlc.h:151
msgid ""
"This allows you to add audio post processing filters, to modify the sound, "
"or audio visualization modules (spectrum analyzer, ...)."
"or audio visualization modules (spectrum analyzer, etc.)."
msgstr ""
#: src/libvlc.h:154
......@@ -1005,7 +1005,7 @@ msgstr ""
msgid ""
"These options allow you to modify the behavior of the video output "
"subsystem. You can for example enable video filters (deinterlacing, image "
"adjusting, ...). Enable these filters here and configure them in the \"video "
"adjusting, etc.). Enable these filters here and configure them in the \"video "
"filters\" modules section. You can also set many miscellaneous video options."
msgstr ""
......@@ -1310,13 +1310,13 @@ msgstr ""
msgid ""
"You can specify a list of bookmarks for a stream in the form "
"\"{name=bookmark-name,time=optional-time-offset,bytes=optional-byte-offset},"
"{etc...}\""
"{...}\""
msgstr ""
#: src/libvlc.h:322
msgid ""
"These options allow you to modify the behavior of the subpictures subsystem. "
"You can for example enable subpictures filters (logo, ...). Enable these "
"You can for example enable subpictures filters (logo, etc.). Enable these "
"filters here and configure them in the \"subpictures filters\" modules "
"section. You can also set many miscellaneous subpictures options."
msgstr ""
......@@ -3116,7 +3116,7 @@ msgstr ""
#: modules/access/cdda/cdda.c:56
msgid ""
"Allows you to specify how many CD blocks to get on a single CD read. "
"Generally on newer/faster CD's, this increases throughput at the expense of "
"Generally on newer/faster CDs, this increases throughput at the expense of "
"a little more memory usage and initial delay. SCSI-MMC limitations generally "
"don't allow for more than 25 blocks per access."
msgstr ""
......@@ -4562,29 +4562,29 @@ msgstr ""
msgid "audio filter for PCM format conversion"
msgstr ""
#: modules/audio_filter/normvol.c:68
#: modules/audio_filter/normvol.c:69
msgid "Number of audio buffers"
msgstr ""
#: modules/audio_filter/normvol.c:69
#: modules/audio_filter/normvol.c:70
msgid ""
"This is the number of audio buffers on which the power measurement is made. "
"A higher number of buffers will increase the response time of the filter to "
"a high power but will make it less sensitive to short variations."
msgstr ""
#: modules/audio_filter/normvol.c:74
#: modules/audio_filter/normvol.c:75
msgid "Max level"
msgstr ""
#: modules/audio_filter/normvol.c:75
#: modules/audio_filter/normvol.c:76
msgid ""
"If the average power over the last N buffers is higher than this value, the "
"volume will be normalized. This value is a positive floating point number. A "
"value between 0.5 and 10 seems sensible."
msgstr ""
#: modules/audio_filter/normvol.c:81
#: modules/audio_filter/normvol.c:82
msgid "Volume normalizer"
msgstr ""
......
......@@ -89,7 +89,7 @@ static char *ppsz_language_text[] =
#define AOUT_CAT_LONGTEXT N_( \
"These options allow you to modify the behavior of the audio " \
"subsystem, and to add audio filters which can be used for " \
"post processing or visual effects (spectrum analyzer, ...).\n" \
"post processing or visual effects (spectrum analyzer, etc.).\n" \
"Enable these filters here, and configure them in the \"audio filters\" " \
"modules section.")
......@@ -149,7 +149,7 @@ static char *ppsz_language_text[] =
#define AUDIO_FILTER_TEXT N_("Audio filters")
#define AUDIO_FILTER_LONGTEXT N_( \
"This allows you to add audio post processing filters, to modify " \
"the sound, or audio visualization modules (spectrum analyzer, ...).")
"the sound, or audio visualization modules (spectrum analyzer, etc.).")
#define AUDIO_CHANNEL_MIXER N_("Channel mixer")
#define AUDIO_CHANNEL_MIXER_LONGTEXT N_( \
......@@ -160,7 +160,7 @@ static char *ppsz_language_text[] =
#define VOUT_CAT_LONGTEXT N_( \
"These options allow you to modify the behavior of the video output " \
"subsystem. You can for example enable video filters (deinterlacing, " \
"image adjusting, ...). Enable these filters here and configure " \
"image adjusting, etc.). Enable these filters here and configure " \
"them in the \"video filters\" modules section. You can also set many " \
"miscellaneous video options." )
......@@ -316,11 +316,11 @@ static char *ppsz_align_descriptions[] =
#define BOOKMARKS_TEXT N_("Bookmarks list for a stream")
#define BOOKMARKS_LONGTEXT N_("You can specify a list of bookmarks for a stream in " \
"the form \"{name=bookmark-name,time=optional-time-offset," \
"bytes=optional-byte-offset},{etc...}\"")
"bytes=optional-byte-offset},{...}\"")
#define SUB_CAT_LONGTEXT N_( \
"These options allow you to modify the behavior of the subpictures " \
"subsystem. You can for example enable subpictures filters (logo, ...). " \
"subsystem. You can for example enable subpictures filters (logo, etc.). " \
"Enable these filters here and configure them in the " \
"\"subpictures filters\" modules section. You can also set many " \
"miscellaneous subpictures options." )
......
......@@ -500,6 +500,7 @@ module_t * __module_Need( vlc_object_t *p_this, const char *psz_capability,
/* Special case: test if we requested a particular intf plugin */
if( !i_shortcuts && p_module->psz_program
&& !strcmp( psz_capability, "interface" )
&& !strcmp( p_module->psz_program,
p_this->p_vlc->psz_object_name ) )
{
......
......@@ -1232,29 +1232,31 @@ static int InheritValue( vlc_object_t *p_this, const char *psz_name,
break;
case VLC_VAR_LIST:
{
char * psz_var = config_GetPsz( p_this, psz_name );
char *psz_orig, *psz_var;
vlc_list_t *p_list = malloc(sizeof(vlc_list_t));
p_val->p_list = p_list;
p_list->i_count = 0;
while ( *psz_var )
psz_var = psz_orig = config_GetPsz( p_this, psz_name );
while( psz_var && *psz_var )
{
char * psz_item = psz_var;
char *psz_item = psz_var;
vlc_value_t val;
while ( *psz_var && *psz_var != ',' )
psz_var++;
if ( *psz_var == ',' )
while( *psz_var && *psz_var != ',' ) psz_var++;
if( *psz_var == ',' )
{
*psz_var = '\0';
psz_var++;
}
val.i_int = strtol( psz_item, NULL, 0 );
INSERT_ELEM( p_list->p_values, p_list->i_count, p_list->i_count,
val );
INSERT_ELEM( p_list->p_values, p_list->i_count,
p_list->i_count, val );
/* p_list->i_count is incremented twice by INSERT_ELEM */
p_list->i_count--;
INSERT_ELEM( p_list->pi_types, p_list->i_count, p_list->i_count,
VLC_VAR_INTEGER );
INSERT_ELEM( p_list->pi_types, p_list->i_count,
p_list->i_count, VLC_VAR_INTEGER );
}
if( psz_orig ) free( psz_orig );
break;
}
default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment