mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
configure.ac: clean up, use AS_VERSION and AS_NANO
Original commit message from CVS: * configure.ac: clean up, use AS_VERSION and AS_NANO * gst/matroska/matroska-mux.c: (gst_matroska_mux_start): use PACKAGE_VERSION define * po/af.po: * po/az.po: * po/cs.po: * po/en_GB.po: * po/hu.po: * po/it.po: * po/nb.po: * po/nl.po: * po/or.po: * po/sq.po: * po/sr.po: * po/sv.po: * po/uk.po: * po/vi.po: updated
This commit is contained in:
parent
f84de0efb7
commit
c3141ee26c
18 changed files with 104 additions and 86 deletions
22
ChangeLog
22
ChangeLog
|
@ -1,3 +1,25 @@
|
||||||
|
2006-04-01 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
clean up, use AS_VERSION and AS_NANO
|
||||||
|
* gst/matroska/matroska-mux.c: (gst_matroska_mux_start):
|
||||||
|
use PACKAGE_VERSION define
|
||||||
|
* po/af.po:
|
||||||
|
* po/az.po:
|
||||||
|
* po/cs.po:
|
||||||
|
* po/en_GB.po:
|
||||||
|
* po/hu.po:
|
||||||
|
* po/it.po:
|
||||||
|
* po/nb.po:
|
||||||
|
* po/nl.po:
|
||||||
|
* po/or.po:
|
||||||
|
* po/sq.po:
|
||||||
|
* po/sr.po:
|
||||||
|
* po/sv.po:
|
||||||
|
* po/uk.po:
|
||||||
|
* po/vi.po:
|
||||||
|
updated
|
||||||
|
|
||||||
2006-03-31 Sebastien Moutte <sebastien@moutte.net>
|
2006-03-31 Sebastien Moutte <sebastien@moutte.net>
|
||||||
|
|
||||||
* ext\jpeg\smokecodec.c:
|
* ext\jpeg\smokecodec.c:
|
||||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit c18b429f2a3698b6fc5e849a637aa0c8b91e82b9
|
Subproject commit e430cd53b02f6d37da6200ac81c89c588f99b089
|
50
configure.ac
50
configure.ac
|
@ -1,13 +1,20 @@
|
||||||
AC_PREREQ(2.52)
|
AC_PREREQ(2.52)
|
||||||
|
|
||||||
dnl initialize autoconf
|
dnl initialize autoconf
|
||||||
dnl we don't specify PACKAGE and VERSION because AS_VERSION puts it together
|
|
||||||
AC_INIT
|
|
||||||
|
|
||||||
dnl when going to/from release please set the nano (fourth number) right !
|
dnl when going to/from release please set the nano (fourth number) right !
|
||||||
dnl releases only do Wall, cvs and prerelease does Werror too
|
dnl releases only do Wall, cvs and prerelease does Werror too
|
||||||
AS_VERSION(gst-plugins-good, GST_PLUGINS_GOOD_VERSION, 0, 10, 2, 1,
|
AC_INIT(GStreamer Good Plug-ins, 0.10.2.1,
|
||||||
GST_CVS="no", GST_CVS="yes")
|
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
||||||
|
gst-plugins-good)
|
||||||
|
|
||||||
|
dnl initialize automake
|
||||||
|
AM_INIT_AUTOMAKE
|
||||||
|
|
||||||
|
dnl define PACKAGE_VERSION_* variables
|
||||||
|
AS_VERSION
|
||||||
|
|
||||||
|
dnl check if this is a release version
|
||||||
|
AS_NANO(GST_CVS="no", GST_CVS="yes")
|
||||||
|
|
||||||
dnl can autoconf find the source ?
|
dnl can autoconf find the source ?
|
||||||
AC_CONFIG_SRCDIR([gst/law/alaw.c])
|
AC_CONFIG_SRCDIR([gst/law/alaw.c])
|
||||||
|
@ -21,13 +28,8 @@ AM_MAINTAINER_MODE
|
||||||
dnl sets host_* variables
|
dnl sets host_* variables
|
||||||
AC_CANONICAL_HOST
|
AC_CANONICAL_HOST
|
||||||
|
|
||||||
dnl initialize automake
|
|
||||||
dnl FIXME: this is deprecated use, we should move PACKAGE and VERSION to
|
|
||||||
dnl AC_INIT, but then we need to parse the version to pass to AS_VERSION
|
|
||||||
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
|
|
||||||
|
|
||||||
dnl our libraries and install dirs use major.minor as a version
|
dnl our libraries and install dirs use major.minor as a version
|
||||||
GST_MAJORMINOR=$GST_PLUGINS_GOOD_VERSION_MAJOR.$GST_PLUGINS_GOOD_VERSION_MINOR
|
GST_MAJORMINOR=$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR
|
||||||
dnl we override it here if we need to for the release candidate of new series
|
dnl we override it here if we need to for the release candidate of new series
|
||||||
GST_MAJORMINOR=0.10
|
GST_MAJORMINOR=0.10
|
||||||
AC_SUBST(GST_MAJORMINOR)
|
AC_SUBST(GST_MAJORMINOR)
|
||||||
|
@ -63,7 +65,7 @@ GST_ARG_GCOV
|
||||||
GST_ARG_EXAMPLES
|
GST_ARG_EXAMPLES
|
||||||
|
|
||||||
GST_ARG_WITH_PKG_CONFIG_PATH
|
GST_ARG_WITH_PKG_CONFIG_PATH
|
||||||
GST_ARG_WITH_PACKAGE_NAME([GStreamer Good Plug-ins])
|
GST_ARG_WITH_PACKAGE_NAME
|
||||||
GST_ARG_WITH_PACKAGE_ORIGIN
|
GST_ARG_WITH_PACKAGE_ORIGIN
|
||||||
|
|
||||||
dnl these are all the gst plug-ins, compilable without additional libs
|
dnl these are all the gst plug-ins, compilable without additional libs
|
||||||
|
@ -113,6 +115,7 @@ AC_ARG_WITH(plugins,
|
||||||
|
|
||||||
dnl disable gst plugins we might not be able to build on this
|
dnl disable gst plugins we might not be able to build on this
|
||||||
dnl platform: udp and rtsp (ugly but minimally invasive)
|
dnl platform: udp and rtsp (ugly but minimally invasive)
|
||||||
|
dnl FIXME: maybe move to sys
|
||||||
AC_CHECK_HEADERS([sys/socket.h], HAVE_SYS_SOCKET_H=yes)
|
AC_CHECK_HEADERS([sys/socket.h], HAVE_SYS_SOCKET_H=yes)
|
||||||
AM_CONDITIONAL(HAVE_SYS_SOCKET_H, test "x$HAVE_SYS_SOCKET_H" = "xyes")
|
AM_CONDITIONAL(HAVE_SYS_SOCKET_H, test "x$HAVE_SYS_SOCKET_H" = "xyes")
|
||||||
|
|
||||||
|
@ -145,8 +148,6 @@ dnl common/m4/gst-arch.m4
|
||||||
dnl check CPU type
|
dnl check CPU type
|
||||||
GST_ARCH
|
GST_ARCH
|
||||||
|
|
||||||
AC_SUBST(GST_CTRL_LIBS)
|
|
||||||
|
|
||||||
dnl Determine endianness
|
dnl Determine endianness
|
||||||
AC_C_BIGENDIAN
|
AC_C_BIGENDIAN
|
||||||
|
|
||||||
|
@ -177,6 +178,8 @@ dnl check for documentation tools
|
||||||
GTK_DOC_CHECK([1.3])
|
GTK_DOC_CHECK([1.3])
|
||||||
AS_PATH_PYTHON([2.1])
|
AS_PATH_PYTHON([2.1])
|
||||||
|
|
||||||
|
dnl *** checks for libraries ***
|
||||||
|
|
||||||
dnl *** checks for header files ***
|
dnl *** checks for header files ***
|
||||||
|
|
||||||
dnl check if we have ANSI C header files
|
dnl check if we have ANSI C header files
|
||||||
|
@ -187,9 +190,13 @@ AC_CHECK_HEADERS([netinet/in.h])
|
||||||
AC_CHECK_HEADERS([winsock2.h])
|
AC_CHECK_HEADERS([winsock2.h])
|
||||||
AM_CONDITIONAL(HAVE_WINSOCK2_H, test "x$HAVE_WINSOCK2_H" = "xyes")
|
AM_CONDITIONAL(HAVE_WINSOCK2_H, test "x$HAVE_WINSOCK2_H" = "xyes")
|
||||||
|
|
||||||
|
dnl *** checks for types/defines ***
|
||||||
|
|
||||||
dnl Check for FIONREAD ioctl declaration. This check is needed
|
dnl Check for FIONREAD ioctl declaration. This check is needed
|
||||||
dnl for the UDP plugin to build on Solaris
|
dnl for the UDP plugin to build on Solaris
|
||||||
GST_CHECK_FIONREAD()
|
GST_CHECK_FIONREAD
|
||||||
|
|
||||||
|
dnl *** checks for structures ***
|
||||||
|
|
||||||
dnl *** checks for compiler characteristics ***
|
dnl *** checks for compiler characteristics ***
|
||||||
|
|
||||||
|
@ -688,15 +695,4 @@ gst-plugins-good.spec
|
||||||
)
|
)
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
||||||
echo "configure: *** Core plug-ins, always built:"
|
GST_OUTPUT_PLUGINS
|
||||||
( for i in $GST_PLUGINS_ALL; do echo -e '\t'$i; done ) | sort
|
|
||||||
echo
|
|
||||||
echo -n "configure: *** Plug-ins relying on libraries that will be built:"
|
|
||||||
echo -e "$GST_PLUGINS_YES" | sort
|
|
||||||
echo
|
|
||||||
echo -n "configure: *** Plug-ins relying on libraries that will NOT be built:"
|
|
||||||
echo -e "$GST_PLUGINS_NO" | sort
|
|
||||||
echo
|
|
||||||
if test "x$BUILD_EXTERNAL" = "xno"; then
|
|
||||||
echo "configure: *** No external plug-ins will be built"
|
|
||||||
fi
|
|
||||||
|
|
|
@ -1068,7 +1068,7 @@ gst_matroska_mux_start (GstMatroskaMux * mux)
|
||||||
gst_ebml_write_float (ebml, GST_MATROSKA_ID_DURATION,
|
gst_ebml_write_float (ebml, GST_MATROSKA_ID_DURATION,
|
||||||
duration / gst_guint64_to_gdouble (mux->time_scale));
|
duration / gst_guint64_to_gdouble (mux->time_scale));
|
||||||
gst_ebml_write_utf8 (ebml, GST_MATROSKA_ID_MUXINGAPP,
|
gst_ebml_write_utf8 (ebml, GST_MATROSKA_ID_MUXINGAPP,
|
||||||
"GStreamer plugin version " GST_PLUGINS_GOOD_VERSION);
|
"GStreamer plugin version " PACKAGE_VERSION);
|
||||||
if (mux->writing_app && mux->writing_app[0]) {
|
if (mux->writing_app && mux->writing_app[0]) {
|
||||||
gst_ebml_write_utf8 (ebml, GST_MATROSKA_ID_WRITINGAPP, mux->writing_app);
|
gst_ebml_write_utf8 (ebml, GST_MATROSKA_ID_WRITINGAPP, mux->writing_app);
|
||||||
}
|
}
|
||||||
|
|
8
po/af.po
8
po/af.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins 0.7.6\n"
|
"Project-Id-Version: gst-plugins 0.7.6\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2004-03-18 14:16+0200\n"
|
"PO-Revision-Date: 2004-03-18 14:16+0200\n"
|
||||||
"Last-Translator: Petri Jooste <rkwjpj@puk.ac.za>\n"
|
"Last-Translator: Petri Jooste <rkwjpj@puk.ac.za>\n"
|
||||||
"Language-Team: Afrikaans <i18n@af.org.za>\n"
|
"Language-Team: Afrikaans <i18n@af.org.za>\n"
|
||||||
|
@ -15,12 +15,12 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=iso-8859-1\n"
|
"Content-Type: text/plain; charset=iso-8859-1\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr "Geen of ongeldige klanktoevoer, AVI-stroom sal korrup wees."
|
msgstr "Geen of ongeldige klanktoevoer, AVI-stroom sal korrup wees."
|
||||||
|
|
||||||
|
|
8
po/az.po
8
po/az.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins-0.8.0\n"
|
"Project-Id-Version: gst-plugins-0.8.0\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2004-03-19 18:29+0200\n"
|
"PO-Revision-Date: 2004-03-19 18:29+0200\n"
|
||||||
"Last-Translator: Metin Amiroff <metin@karegen.com>\n"
|
"Last-Translator: Metin Amiroff <metin@karegen.com>\n"
|
||||||
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
|
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
|
||||||
|
@ -16,12 +16,12 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: KBabel 1.0.2\n"
|
"X-Generator: KBabel 1.0.2\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr "Səhv ya da olmayan audio girişi, AVI yayımı pozulacaqdır."
|
msgstr "Səhv ya da olmayan audio girişi, AVI yayımı pozulacaqdır."
|
||||||
|
|
||||||
|
|
8
po/cs.po
8
po/cs.po
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins 0.8.3\n"
|
"Project-Id-Version: gst-plugins 0.8.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2004-08-08 22:58+0200\n"
|
"PO-Revision-Date: 2004-08-08 22:58+0200\n"
|
||||||
"Last-Translator: Miloslav Trmac <mitr@volny.cz>\n"
|
"Last-Translator: Miloslav Trmac <mitr@volny.cz>\n"
|
||||||
"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
|
"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
|
||||||
|
@ -18,12 +18,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
|
||||||
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr "Žádný nebo neplatný vstup zvuku, proud AVI bude poškozen."
|
msgstr "Žádný nebo neplatný vstup zvuku, proud AVI bude poškozen."
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins 0.8.1\n"
|
"Project-Id-Version: gst-plugins 0.8.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2004-04-26 10:41-0400\n"
|
"PO-Revision-Date: 2004-04-26 10:41-0400\n"
|
||||||
"Last-Translator: Gareth Owen <gowen72@yahoo.com>\n"
|
"Last-Translator: Gareth Owen <gowen72@yahoo.com>\n"
|
||||||
"Language-Team: English (British) <en_gb@li.org>\n"
|
"Language-Team: English (British) <en_gb@li.org>\n"
|
||||||
|
@ -14,12 +14,12 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr "No or invalid input audio, AVI stream will be corrupt."
|
msgstr "No or invalid input audio, AVI stream will be corrupt."
|
||||||
|
|
||||||
|
|
8
po/hu.po
8
po/hu.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins 0.8.2\n"
|
"Project-Id-Version: gst-plugins 0.8.2\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2004-07-18 11:03+0200\n"
|
"PO-Revision-Date: 2004-07-18 11:03+0200\n"
|
||||||
"Last-Translator: Laszlo Dvornik <dvornik@invitel.hu>\n"
|
"Last-Translator: Laszlo Dvornik <dvornik@invitel.hu>\n"
|
||||||
"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
|
"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
|
||||||
|
@ -14,12 +14,12 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr "Nincs vagy érvénytelen bemeneti hang, az AVI-folyam sérült lesz."
|
msgstr "Nincs vagy érvénytelen bemeneti hang, az AVI-folyam sérült lesz."
|
||||||
|
|
||||||
|
|
8
po/it.po
8
po/it.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins 0.8.3\n"
|
"Project-Id-Version: gst-plugins 0.8.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2004-11-07 19:11+0100\n"
|
"PO-Revision-Date: 2004-11-07 19:11+0100\n"
|
||||||
"Last-Translator: Luca Ferretti <elle.uca@infinito.it>\n"
|
"Last-Translator: Luca Ferretti <elle.uca@infinito.it>\n"
|
||||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||||
|
@ -15,12 +15,12 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr "Ingresso audio assente o non valido. Lo stream AVI risulterà corrotto."
|
msgstr "Ingresso audio assente o non valido. Lo stream AVI risulterà corrotto."
|
||||||
|
|
||||||
|
|
8
po/nb.po
8
po/nb.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins 0.8.3\n"
|
"Project-Id-Version: gst-plugins 0.8.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2004-10-04 15:54+0200\n"
|
"PO-Revision-Date: 2004-10-04 15:54+0200\n"
|
||||||
"Last-Translator: Kjartan Maraas <kmaraas@broadpark.no>\n"
|
"Last-Translator: Kjartan Maraas <kmaraas@broadpark.no>\n"
|
||||||
"Language-Team: Norwegian Bokmaal <i18n-nb@lister.ping.uio.no>\n"
|
"Language-Team: Norwegian Bokmaal <i18n-nb@lister.ping.uio.no>\n"
|
||||||
|
@ -14,12 +14,12 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
8
po/nl.po
8
po/nl.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins 0.8.3\n"
|
"Project-Id-Version: gst-plugins 0.8.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2004-08-05 16:26+0200\n"
|
"PO-Revision-Date: 2004-08-05 16:26+0200\n"
|
||||||
"Last-Translator: Elros Cyriatan <cyriatan@fastmail.fm>\n"
|
"Last-Translator: Elros Cyriatan <cyriatan@fastmail.fm>\n"
|
||||||
"Language-Team: Dutch <vertaling@nl.linux.org>\n"
|
"Language-Team: Dutch <vertaling@nl.linux.org>\n"
|
||||||
|
@ -15,12 +15,12 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr "Geen of ongeldig invoergeluid, AVI-stroom zal slecht zijn."
|
msgstr "Geen of ongeldig invoergeluid, AVI-stroom zal slecht zijn."
|
||||||
|
|
||||||
|
|
10
po/or.po
10
po/or.po
|
@ -2,13 +2,13 @@
|
||||||
# Copyright (C) 2004, Free Software Foundation, Inc.
|
# Copyright (C) 2004, Free Software Foundation, Inc.
|
||||||
# This file is distributed under the same license as the gst-plugins-0.8.3 package.
|
# This file is distributed under the same license as the gst-plugins-0.8.3 package.
|
||||||
# Gora Mohanty <gora_mohanty@yahoo.co.in>, 2004.
|
# Gora Mohanty <gora_mohanty@yahoo.co.in>, 2004.
|
||||||
# $Id: or.po,v 1.20 2006/02/08 17:35:05 thaytan Exp $
|
# $Id: or.po,v 1.21 2006/02/25 19:07:41 dolphy Exp $
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins-0.8.3\n"
|
"Project-Id-Version: gst-plugins-0.8.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2004-09-27 13:32+0530\n"
|
"PO-Revision-Date: 2004-09-27 13:32+0530\n"
|
||||||
"Last-Translator: Gora Mohanty <gora_mohanty@yahoo.co.in>\n"
|
"Last-Translator: Gora Mohanty <gora_mohanty@yahoo.co.in>\n"
|
||||||
"Language-Team: Oriya <gora_mohanty@yahoo.co.in>\n"
|
"Language-Team: Oriya <gora_mohanty@yahoo.co.in>\n"
|
||||||
|
@ -16,12 +16,12 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr "ନିବେଶ ଧ୍ବନି ନାହିଁ ବା ଅବୈଧ ଅଛି. ଏ.ଭି.ଆଇ. ଧାରା ଭ୍ରଷ୍ଟ ହୋଇଯିବ."
|
msgstr "ନିବେଶ ଧ୍ବନି ନାହିଁ ବା ଅବୈଧ ଅଛି. ଏ.ଭି.ଆଇ. ଧାରା ଭ୍ରଷ୍ଟ ହୋଇଯିବ."
|
||||||
|
|
||||||
|
|
8
po/sq.po
8
po/sq.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins 0.8.3\n"
|
"Project-Id-Version: gst-plugins 0.8.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2004-08-07 20:29+0200\n"
|
"PO-Revision-Date: 2004-08-07 20:29+0200\n"
|
||||||
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
|
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
|
||||||
"Language-Team: Albanian <begraj@hotmail.com>\n"
|
"Language-Team: Albanian <begraj@hotmail.com>\n"
|
||||||
|
@ -14,12 +14,12 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr "Input audio i gabuar ose mungon, stream AVI mund të jetë i dëmtuar."
|
msgstr "Input audio i gabuar ose mungon, stream AVI mund të jetë i dëmtuar."
|
||||||
|
|
||||||
|
|
8
po/sr.po
8
po/sr.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins 0.7.6\n"
|
"Project-Id-Version: gst-plugins 0.7.6\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2004-03-13 00:18+0100\n"
|
"PO-Revision-Date: 2004-03-13 00:18+0100\n"
|
||||||
"Last-Translator: Danilo Segan <dsegan@gmx.net>\n"
|
"Last-Translator: Danilo Segan <dsegan@gmx.net>\n"
|
||||||
"Language-Team: Serbian <gnu@prevod.org>\n"
|
"Language-Team: Serbian <gnu@prevod.org>\n"
|
||||||
|
@ -16,12 +16,12 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : (n%10>=2 && n"
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : (n%10>=2 && n"
|
||||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr "Улазног звука нема или је неисправан, АВИ ток ће бити искварен."
|
msgstr "Улазног звука нема или је неисправан, АВИ ток ће бити искварен."
|
||||||
|
|
||||||
|
|
8
po/sv.po
8
po/sv.po
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins 0.8.3\n"
|
"Project-Id-Version: gst-plugins 0.8.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2004-08-03 20:53+0200\n"
|
"PO-Revision-Date: 2004-08-03 20:53+0200\n"
|
||||||
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
|
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
|
||||||
"Language-Team: Swedish <sv@li.org>\n"
|
"Language-Team: Swedish <sv@li.org>\n"
|
||||||
|
@ -16,12 +16,12 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr "Inget eller ogiltigt inljud. AVI-flödet kommer att skadas."
|
msgstr "Inget eller ogiltigt inljud. AVI-flödet kommer att skadas."
|
||||||
|
|
||||||
|
|
8
po/uk.po
8
po/uk.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins 0.8.2\n"
|
"Project-Id-Version: gst-plugins 0.8.2\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2004-08-03 15:40+0200\n"
|
"PO-Revision-Date: 2004-08-03 15:40+0200\n"
|
||||||
"Last-Translator: Maxim V. Dziumanenko <mvd@mylinux.com.ua>\n"
|
"Last-Translator: Maxim V. Dziumanenko <mvd@mylinux.com.ua>\n"
|
||||||
"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
|
"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
|
||||||
|
@ -15,12 +15,12 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr "Відсутній або неправильний вхід звуку, AVI потік буде пошкоджений."
|
msgstr "Відсутній або неправильний вхід звуку, AVI потік буде пошкоджений."
|
||||||
|
|
||||||
|
|
8
po/vi.po
8
po/vi.po
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gst-plugins-0.8.3\n"
|
"Project-Id-Version: gst-plugins-0.8.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2006-02-25 19:58+0100\n"
|
"POT-Creation-Date: 2006-03-17 16:42+0100\n"
|
||||||
"PO-Revision-Date: 2005-01-22 17:17+0930\n"
|
"PO-Revision-Date: 2005-01-22 17:17+0930\n"
|
||||||
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
|
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
|
||||||
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net> \n"
|
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net> \n"
|
||||||
|
@ -16,12 +16,12 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:438
|
#: ext/libpng/gstpngdec.c:275 ext/libpng/gstpngdec.c:458
|
||||||
#: gst/wavparse/gstwavparse.c:1149
|
#: gst/wavparse/gstwavparse.c:1231
|
||||||
msgid "Internal data stream error."
|
msgid "Internal data stream error."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/avi/gstavimux.c:1009
|
#: gst/avi/gstavimux.c:1019
|
||||||
msgid "No or invalid input audio, AVI stream will be corrupt."
|
msgid "No or invalid input audio, AVI stream will be corrupt."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Chưa có dữ liệu âm thanh nhập, hoặc dữ liệu âm thanh nhập không hợp lệ. Sẽ "
|
"Chưa có dữ liệu âm thanh nhập, hoặc dữ liệu âm thanh nhập không hợp lệ. Sẽ "
|
||||||
|
|
Loading…
Reference in a new issue