mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-16 13:26:36 +00:00
RELEASE 0.11
This commit is contained in:
parent
e9202c22f0
commit
bb32076c17
46 changed files with 6157 additions and 2319 deletions
54
RELEASE
54
RELEASE
|
@ -1,20 +1,20 @@
|
||||||
|
|
||||||
Release notes for GStreamer 0.10.35 "Nuclear Fission"
|
Release notes for GStreamer 0.11.0 "It's a boy"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The GStreamer team is proud to announce a new release
|
The GStreamer team is proud to announce the first release
|
||||||
in the 0.10.x stable series of the
|
in the 0.11.x unstable series of the
|
||||||
core of the GStreamer streaming media framework.
|
core of the GStreamer streaming media framework.
|
||||||
|
|
||||||
|
|
||||||
The 0.10.x series is a stable series targeted at end users.
|
The 0.11.x series is an unstable series targeted at developers.
|
||||||
It is not API or ABI compatible with the stable 0.8.x series.
|
It is not API or ABI compatible with the stable 0.10.x series.
|
||||||
It is, however, parallel installable with the 0.8.x series.
|
It is, however, parallel installable with the 0.10.x series.
|
||||||
|
|
||||||
|
|
||||||
The 0.10.x series has been reworked for threadsafety. It also features
|
The 0.11.x series has improved memory management and features
|
||||||
various feature additions and enhancements.
|
various cleanups and enhancements.
|
||||||
|
|
||||||
|
|
||||||
This module, gstreamer, only contains core functionality.
|
This module, gstreamer, only contains core functionality.
|
||||||
|
@ -37,13 +37,23 @@ contains a set of less supported plug-ins that haven't passed the
|
||||||
|
|
||||||
Features of this release
|
Features of this release
|
||||||
|
|
||||||
* work around GLib atomic ops API change
|
* Parallel installability with 0.10.x series
|
||||||
* some minor win32/mingw fixes
|
* Reworked buffer memory management
|
||||||
* don't use G_CONST_RETURN in public headers
|
* Arbitrary buffer metadata
|
||||||
|
* integrated bufferpool management
|
||||||
|
* Improved dynamic pipeline handling
|
||||||
|
* Reworked video caps system
|
||||||
|
* Reworked pad probes
|
||||||
|
|
||||||
|
|
||||||
Bugs fixed in this release
|
Bugs fixed in this release
|
||||||
|
|
||||||
* 652211 : Use const instead G_CONST_RETURN
|
* 322851 : basesrc: add fill virtual method
|
||||||
|
* 491501 : Reduce usage of base_init in GstElement subclasses
|
||||||
|
* 518597 : [0.11] Get rid of .gstreamer-X.X folder and follow fd.o xdg base directory specifications
|
||||||
|
* 616237 : Stop allocating buffers for any caps
|
||||||
|
* 643244 : [0.11] gstpad: gst_pad_alloc_buffer(_and_set_caps) take size as gint instead of guint
|
||||||
|
* 648181 : [basetransform] Trigger upstream renegotiation if the sinkpad is (re-)linked
|
||||||
|
|
||||||
Download
|
Download
|
||||||
|
|
||||||
|
@ -70,14 +80,20 @@ will create more lists as necessary.
|
||||||
|
|
||||||
Applications
|
Applications
|
||||||
|
|
||||||
Applications ported to GStreamer 0.10 include Totem, RhythmBox, Sound-Juicer,
|
No applications are ported to 0.11 as of yet. We are looking for more people to
|
||||||
Gnome Media, Flumotion, Amarok, Jamboree, Pitivi, Istanbul, AnnoAmp, Elisa, and others.
|
port plugins and applications.
|
||||||
Let us know if you want to be added to this list.
|
|
||||||
|
|
||||||
|
|
||||||
Contributors to this release
|
Contributors to this release
|
||||||
|
|
||||||
* David Schleef
|
* David Schleef
|
||||||
* Javier Jardón
|
* Edward Hervey
|
||||||
* Руслан Ижбулатов
|
* Johan Dahlin
|
||||||
|
* Koop Mast
|
||||||
|
* Mark Nauwelaerts
|
||||||
|
* Sebastian Dröge
|
||||||
|
* Stefan Kost
|
||||||
|
* Thiago Santos
|
||||||
|
* Tim-Philipp Müller
|
||||||
|
* Wim Taymans
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ AC_PREREQ(2.60)
|
||||||
dnl initialize autoconf
|
dnl initialize autoconf
|
||||||
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, git and prerelease does Werror too
|
dnl releases only do Wall, git and prerelease does Werror too
|
||||||
AC_INIT(GStreamer, 0.11.0.1,
|
AC_INIT(GStreamer, 0.11.0,
|
||||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
||||||
gstreamer)
|
gstreamer)
|
||||||
AG_GST_INIT
|
AG_GST_INIT
|
||||||
|
@ -48,7 +48,7 @@ dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
|
||||||
dnl - interfaces added -> increment AGE
|
dnl - interfaces added -> increment AGE
|
||||||
dnl - interfaces removed -> AGE = 0
|
dnl - interfaces removed -> AGE = 0
|
||||||
dnl sets GST_LT_LDFLAGS
|
dnl sets GST_LT_LDFLAGS
|
||||||
AS_LIBTOOL(GST, 29, 0, 29)
|
AS_LIBTOOL(GST, 30, 0, 0)
|
||||||
|
|
||||||
dnl FIXME: this macro doesn't actually work;
|
dnl FIXME: this macro doesn't actually work;
|
||||||
dnl the generated libtool script has no support for the listed tags.
|
dnl the generated libtool script has no support for the listed tags.
|
||||||
|
|
|
@ -38,6 +38,17 @@ hierarchy, and a set of media-agnostic core elements.
|
||||||
</GitRepository>
|
</GitRepository>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
|
<release>
|
||||||
|
<Version>
|
||||||
|
<revision>0.11.0</revision>
|
||||||
|
<branch>0.11</branch>
|
||||||
|
<name>It's a boy</name>
|
||||||
|
<created>2011-08-02</created>
|
||||||
|
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.11.0.tar.bz2" />
|
||||||
|
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.11.0.tar.gz" />
|
||||||
|
</Version>
|
||||||
|
</release>
|
||||||
|
|
||||||
<release>
|
<release>
|
||||||
<Version>
|
<Version>
|
||||||
<revision>0.10.35</revision>
|
<revision>0.10.35</revision>
|
||||||
|
|
2
po/af.po
2
po/af.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.9.7\n"
|
"Project-Id-Version: gstreamer 0.9.7\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2005-12-05 11:45+0200\n"
|
"PO-Revision-Date: 2005-12-05 11:45+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"
|
||||||
|
|
2
po/az.po
2
po/az.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer-0.8.0\n"
|
"Project-Id-Version: gstreamer-0.8.0\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2004-03-19 18:40+0200\n"
|
"PO-Revision-Date: 2004-03-19 18:40+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"
|
||||||
|
|
2
po/be.po
2
po/be.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.9.7\n"
|
"Project-Id-Version: gstreamer 0.9.7\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2006-01-18 22:26+0200\n"
|
"PO-Revision-Date: 2006-01-18 22:26+0200\n"
|
||||||
"Last-Translator: Ales Nyakhaychyk <nab@mail.by>\n"
|
"Last-Translator: Ales Nyakhaychyk <nab@mail.by>\n"
|
||||||
"Language-Team: Belarusian <i18n@mova.org>\n"
|
"Language-Team: Belarusian <i18n@mova.org>\n"
|
||||||
|
|
2
po/bg.po
2
po/bg.po
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.32.2\n"
|
"Project-Id-Version: gstreamer 0.10.32.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2011-04-26 22:40+0300\n"
|
"PO-Revision-Date: 2011-04-26 22:40+0300\n"
|
||||||
"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"
|
"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"
|
||||||
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
|
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
|
||||||
|
|
2
po/ca.po
2
po/ca.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-11-04 19:41+0100\n"
|
"PO-Revision-Date: 2010-11-04 19:41+0100\n"
|
||||||
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
|
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
|
||||||
"Language-Team: Catalan <ca@dodds.net>\n"
|
"Language-Team: Catalan <ca@dodds.net>\n"
|
||||||
|
|
2
po/cs.po
2
po/cs.po
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.20.3\n"
|
"Project-Id-Version: gstreamer 0.10.20.3\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2008-10-12 12:12+0200\n"
|
"PO-Revision-Date: 2008-10-12 12:12+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"
|
||||||
|
|
2
po/da.po
2
po/da.po
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-11-06 22:52+0100\n"
|
"PO-Revision-Date: 2010-11-06 22:52+0100\n"
|
||||||
"Last-Translator: Mogens Jaeger <mogensjaeger@gmail.com>\n"
|
"Last-Translator: Mogens Jaeger <mogensjaeger@gmail.com>\n"
|
||||||
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
||||||
|
|
2
po/de.po
2
po/de.po
|
@ -9,7 +9,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.32.2\n"
|
"Project-Id-Version: gstreamer 0.10.32.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2011-04-27 23:44+0200\n"
|
"PO-Revision-Date: 2011-04-27 23:44+0200\n"
|
||||||
"Last-Translator: Christian Kirbach <christian.kirbach@googlemail.com>\n"
|
"Last-Translator: Christian Kirbach <christian.kirbach@googlemail.com>\n"
|
||||||
"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
|
"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
|
||||||
|
|
2
po/el.po
2
po/el.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer-0.10.30.3\n"
|
"Project-Id-Version: gstreamer-0.10.30.3\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-11-29 11:14+0200\n"
|
"PO-Revision-Date: 2010-11-29 11:14+0200\n"
|
||||||
"Last-Translator: Michael Kotsarinis <mk73628@gmail.com>\n"
|
"Last-Translator: Michael Kotsarinis <mk73628@gmail.com>\n"
|
||||||
"Language-Team: Greek <team@lists.gnome.gr>\n"
|
"Language-Team: Greek <team@lists.gnome.gr>\n"
|
||||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.1\n"
|
"Project-Id-Version: gstreamer 0.8.1\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2004-04-26 10:36-0400\n"
|
"PO-Revision-Date: 2004-04-26 10:36-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"
|
||||||
|
|
2
po/es.po
2
po/es.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-11-01 18:11+0100\n"
|
"PO-Revision-Date: 2010-11-01 18:11+0100\n"
|
||||||
"Last-Translator: Jorge González González <aloriel@gmail.com>\n"
|
"Last-Translator: Jorge González González <aloriel@gmail.com>\n"
|
||||||
"Language-Team: Spanish <es@li.org>\n"
|
"Language-Team: Spanish <es@li.org>\n"
|
||||||
|
|
2
po/eu.po
2
po/eu.po
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer-0.10.26.2\n"
|
"Project-Id-Version: gstreamer-0.10.26.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-03-25 13:10+0100\n"
|
"PO-Revision-Date: 2010-03-25 13:10+0100\n"
|
||||||
"Last-Translator: Mikel Olasagasti Uranga <hey_neken@mundurat.net>\n"
|
"Last-Translator: Mikel Olasagasti Uranga <hey_neken@mundurat.net>\n"
|
||||||
"Language-Team: Basque <translation-team-eu@lists.sourceforge.net>\n"
|
"Language-Team: Basque <translation-team-eu@lists.sourceforge.net>\n"
|
||||||
|
|
2
po/fi.po
2
po/fi.po
|
@ -12,7 +12,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-11-17 23:10+0200\n"
|
"PO-Revision-Date: 2010-11-17 23:10+0200\n"
|
||||||
"Last-Translator: Tommi Vainikainen <Tommi.Vainikainen@iki.fi>\n"
|
"Last-Translator: Tommi Vainikainen <Tommi.Vainikainen@iki.fi>\n"
|
||||||
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
|
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
|
||||||
|
|
2
po/fr.po
2
po/fr.po
|
@ -9,7 +9,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.32.2\n"
|
"Project-Id-Version: gstreamer 0.10.32.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2011-04-28 09:34+0200\n"
|
"PO-Revision-Date: 2011-04-28 09:34+0200\n"
|
||||||
"Last-Translator: Claude Paroz <claude@2xlibre.net>\n"
|
"Last-Translator: Claude Paroz <claude@2xlibre.net>\n"
|
||||||
"Language-Team: French <traduc@traduc.org>\n"
|
"Language-Team: French <traduc@traduc.org>\n"
|
||||||
|
|
2
po/gl.po
2
po/gl.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.31.2\n"
|
"Project-Id-Version: gstreamer 0.10.31.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2011-04-13 05:19+0000\n"
|
"PO-Revision-Date: 2011-04-13 05:19+0000\n"
|
||||||
"Last-Translator: Francisco Diéguez <frandieguez@ubuntu.com>\n"
|
"Last-Translator: Francisco Diéguez <frandieguez@ubuntu.com>\n"
|
||||||
"Language-Team: Galician <proxecto@trasno.net>\n"
|
"Language-Team: Galician <proxecto@trasno.net>\n"
|
||||||
|
|
2
po/hu.po
2
po/hu.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-11-01 13:39+0100\n"
|
"PO-Revision-Date: 2010-11-01 13:39+0100\n"
|
||||||
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
|
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
|
||||||
"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
|
"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
|
||||||
|
|
2
po/id.po
2
po/id.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.29.2\n"
|
"Project-Id-Version: gstreamer 0.10.29.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-06-29 21:55+0700\n"
|
"PO-Revision-Date: 2010-06-29 21:55+0700\n"
|
||||||
"Last-Translator: Andhika Padmawan <andhika.padmawan@gmail.com>\n"
|
"Last-Translator: Andhika Padmawan <andhika.padmawan@gmail.com>\n"
|
||||||
"Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n"
|
"Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n"
|
||||||
|
|
2
po/it.po
2
po/it.po
|
@ -106,7 +106,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-10-25 10:03+0200\n"
|
"PO-Revision-Date: 2010-10-25 10:03+0200\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"
|
||||||
|
|
2
po/ja.po
2
po/ja.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.20.3\n"
|
"Project-Id-Version: gstreamer 0.10.20.3\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2008-10-16 19:57+0900\n"
|
"PO-Revision-Date: 2008-10-16 19:57+0900\n"
|
||||||
"Last-Translator: Makoto Kato <makoto.kt@gmail.com>\n"
|
"Last-Translator: Makoto Kato <makoto.kt@gmail.com>\n"
|
||||||
"Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
|
"Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
|
||||||
|
|
2
po/lt.po
2
po/lt.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.29.2\n"
|
"Project-Id-Version: gstreamer 0.10.29.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-07-16 00:50+0300\n"
|
"PO-Revision-Date: 2010-07-16 00:50+0300\n"
|
||||||
"Last-Translator: Žygimantas Beručka <uid0@akl.lt>\n"
|
"Last-Translator: Žygimantas Beručka <uid0@akl.lt>\n"
|
||||||
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
|
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
|
||||||
|
|
2
po/nb.po
2
po/nb.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-10-24 21:36+0200\n"
|
"PO-Revision-Date: 2010-10-24 21:36+0200\n"
|
||||||
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
|
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
|
||||||
"Language-Team: Norwegian Bokmaal <i18n-nb@lister.ping.uio.no>\n"
|
"Language-Team: Norwegian Bokmaal <i18n-nb@lister.ping.uio.no>\n"
|
||||||
|
|
2
po/nl.po
2
po/nl.po
|
@ -10,7 +10,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.32.2\n"
|
"Project-Id-Version: gstreamer 0.10.32.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2011-04-26 23:10+0200\n"
|
"PO-Revision-Date: 2011-04-26 23:10+0200\n"
|
||||||
"Last-Translator: Freek de Kruijf <f.de.kruijf@gmail.com>\n"
|
"Last-Translator: Freek de Kruijf <f.de.kruijf@gmail.com>\n"
|
||||||
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
|
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
|
||||||
|
|
2
po/pl.po
2
po/pl.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.32.2\n"
|
"Project-Id-Version: gstreamer 0.10.32.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2011-04-26 17:54+0200\n"
|
"PO-Revision-Date: 2011-04-26 17:54+0200\n"
|
||||||
"Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>\n"
|
"Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>\n"
|
||||||
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
|
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
|
||||||
|
|
|
@ -17,7 +17,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer-0.10.31.2\n"
|
"Project-Id-Version: gstreamer-0.10.31.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2011-01-08 01:36-0300\n"
|
"PO-Revision-Date: 2011-01-08 01:36-0300\n"
|
||||||
"Last-Translator: Fabrício Godoy <skarllot@gmail.com>\n"
|
"Last-Translator: Fabrício Godoy <skarllot@gmail.com>\n"
|
||||||
"Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n"
|
"Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n"
|
||||||
|
|
2
po/ro.po
2
po/ro.po
|
@ -5,7 +5,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.29.2\n"
|
"Project-Id-Version: gstreamer 0.10.29.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-08-16 01:10+0300\n"
|
"PO-Revision-Date: 2010-08-16 01:10+0300\n"
|
||||||
"Last-Translator: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>\n"
|
"Last-Translator: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>\n"
|
||||||
"Language-Team: Romanian <translation-team-ro@lists.sourceforge.net>\n"
|
"Language-Team: Romanian <translation-team-ro@lists.sourceforge.net>\n"
|
||||||
|
|
2
po/ru.po
2
po/ru.po
|
@ -9,7 +9,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer-0.10.32.2\n"
|
"Project-Id-Version: gstreamer-0.10.32.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2011-04-26 20:25+0400\n"
|
"PO-Revision-Date: 2011-04-26 20:25+0400\n"
|
||||||
"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
|
"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
|
||||||
"Language-Team: Russian <gnu@mx.ru>\n"
|
"Language-Team: Russian <gnu@mx.ru>\n"
|
||||||
|
|
2
po/rw.po
2
po/rw.po
|
@ -15,7 +15,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.8\n"
|
"Project-Id-Version: gstreamer 0.8.8\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2005-04-04 10:55-0700\n"
|
"PO-Revision-Date: 2005-04-04 10:55-0700\n"
|
||||||
"Last-Translator: Steven Michael Murphy <murf@e-tools.com>\n"
|
"Last-Translator: Steven Michael Murphy <murf@e-tools.com>\n"
|
||||||
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
|
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
|
||||||
|
|
2
po/sk.po
2
po/sk.po
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
"Project-Id-Version: gstreamer 0.10.30.3\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-11-08 16:13+0100\n"
|
"PO-Revision-Date: 2010-11-08 16:13+0100\n"
|
||||||
"Last-Translator: Peter Tuhársky <tuharsky@misbb.sk>\n"
|
"Last-Translator: Peter Tuhársky <tuharsky@misbb.sk>\n"
|
||||||
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
|
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
|
||||||
|
|
2
po/sl.po
2
po/sl.po
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.29.2\n"
|
"Project-Id-Version: gstreamer 0.10.29.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-09-18 20:21+0100\n"
|
"PO-Revision-Date: 2010-09-18 20:21+0100\n"
|
||||||
"Last-Translator: Matej Urbančič <matej.urban@gmail.com>\n"
|
"Last-Translator: Matej Urbančič <matej.urban@gmail.com>\n"
|
||||||
"Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>\n"
|
"Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>\n"
|
||||||
|
|
2
po/sq.po
2
po/sq.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.4\n"
|
"Project-Id-Version: gstreamer 0.8.4\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2004-08-07 23:46+0200\n"
|
"PO-Revision-Date: 2004-08-07 23:46+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"
|
||||||
|
|
2
po/sr.po
2
po/sr.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.8\n"
|
"Project-Id-Version: gstreamer 0.8.8\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2005-01-27 16:58+0100\n"
|
"PO-Revision-Date: 2005-01-27 16:58+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"
|
||||||
|
|
2
po/sv.po
2
po/sv.po
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.31.2\n"
|
"Project-Id-Version: gstreamer 0.10.31.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2011-01-09 19:46+0100\n"
|
"PO-Revision-Date: 2011-01-09 19:46+0100\n"
|
||||||
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
|
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
|
||||||
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
|
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
|
||||||
|
|
2
po/tr.po
2
po/tr.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.0\n"
|
"Project-Id-Version: gstreamer 0.8.0\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2004-04-03 03:14+0300\n"
|
"PO-Revision-Date: 2004-04-03 03:14+0300\n"
|
||||||
"Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n"
|
"Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n"
|
||||||
"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
|
"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
|
||||||
|
|
2
po/uk.po
2
po/uk.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.14\n"
|
"Project-Id-Version: gstreamer 0.10.14\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2007-09-07 11:16+0300\n"
|
"PO-Revision-Date: 2007-09-07 11:16+0300\n"
|
||||||
"Last-Translator: Maxim V. Dziumanenko <dziumanenko@gmail.com>\n"
|
"Last-Translator: Maxim V. Dziumanenko <dziumanenko@gmail.com>\n"
|
||||||
"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
|
"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
|
||||||
|
|
2
po/vi.po
2
po/vi.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.29.2\n"
|
"Project-Id-Version: gstreamer 0.10.29.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-10-03 19:09+1030\n"
|
"PO-Revision-Date: 2010-10-03 19:09+1030\n"
|
||||||
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
|
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
|
||||||
"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
|
"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
|
||||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.10.25.2\n"
|
"Project-Id-Version: gstreamer 0.10.25.2\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2010-02-02 18:58+0800\n"
|
"PO-Revision-Date: 2010-02-02 18:58+0800\n"
|
||||||
"Last-Translator: Ji ZhengYu <zhengyuji@gmail.com>\n"
|
"Last-Translator: Ji ZhengYu <zhengyuji@gmail.com>\n"
|
||||||
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
|
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
|
||||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.8\n"
|
"Project-Id-Version: gstreamer 0.8.8\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
|
||||||
"POT-Creation-Date: 2011-06-04 15:29+0100\n"
|
"POT-Creation-Date: 2011-08-02 16:41+0200\n"
|
||||||
"PO-Revision-Date: 2005-04-27 14:55+0800\n"
|
"PO-Revision-Date: 2005-04-27 14:55+0800\n"
|
||||||
"Last-Translator: Abel Cheung <abelcheung@gmail.com>\n"
|
"Last-Translator: Abel Cheung <abelcheung@gmail.com>\n"
|
||||||
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
|
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
|
||||||
|
|
|
@ -9,15 +9,6 @@
|
||||||
/* poll doesn't work on devices */
|
/* poll doesn't work on devices */
|
||||||
#undef BROKEN_POLL
|
#undef BROKEN_POLL
|
||||||
|
|
||||||
/* Buffer alignment to use */
|
|
||||||
#undef BUFFER_ALIGNMENT
|
|
||||||
|
|
||||||
/* Buffer alignment by malloc default */
|
|
||||||
#define BUFFER_ALIGNMENT_MALLOC 1
|
|
||||||
|
|
||||||
/* Buffer alignment by pagesize */
|
|
||||||
#undef BUFFER_ALIGNMENT_PAGESIZE
|
|
||||||
|
|
||||||
/* Define to 1 if translation of program messages to the user's native
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
language is requested. */
|
language is requested. */
|
||||||
#undef ENABLE_NLS
|
#undef ENABLE_NLS
|
||||||
|
@ -59,13 +50,13 @@
|
||||||
#define GST_MAJORMINOR "0.11"
|
#define GST_MAJORMINOR "0.11"
|
||||||
|
|
||||||
/* package name in plugins */
|
/* package name in plugins */
|
||||||
#define GST_PACKAGE_NAME "GStreamer git"
|
#define GST_PACKAGE_NAME "GStreamer source release"
|
||||||
|
|
||||||
/* package origin */
|
/* package origin */
|
||||||
#define GST_PACKAGE_ORIGIN "Unknown package origin"
|
#define GST_PACKAGE_ORIGIN "Unknown package origin"
|
||||||
|
|
||||||
/* GStreamer package release date/time for plugins as YYYY-MM-DD */
|
/* GStreamer package release date/time for plugins as YYYY-MM-DD */
|
||||||
#define GST_PACKAGE_RELEASE_DATETIME "2011-06-18T12:45Z"
|
#define GST_PACKAGE_RELEASE_DATETIME "2011-08-02"
|
||||||
|
|
||||||
/* location of the installed gst-plugin-scanner */
|
/* location of the installed gst-plugin-scanner */
|
||||||
#define GST_PLUGIN_SCANNER_INSTALLED LIBDIR "\\gst-plugin-scanner"
|
#define GST_PLUGIN_SCANNER_INSTALLED LIBDIR "\\gst-plugin-scanner"
|
||||||
|
@ -321,6 +312,15 @@
|
||||||
*/
|
*/
|
||||||
#undef LT_OBJDIR
|
#undef LT_OBJDIR
|
||||||
|
|
||||||
|
/* Memory alignment to use */
|
||||||
|
#undef MEMORY_ALIGNMENT
|
||||||
|
|
||||||
|
/* Memory alignment by malloc default */
|
||||||
|
#define MEMORY_ALIGNMENT_MALLOC 1
|
||||||
|
|
||||||
|
/* Memory alignment by pagesize */
|
||||||
|
#undef MEMORY_ALIGNMENT_PAGESIZE
|
||||||
|
|
||||||
/* Define if you have no native inet_aton() function. */
|
/* Define if you have no native inet_aton() function. */
|
||||||
#undef NO_INET_ATON
|
#undef NO_INET_ATON
|
||||||
|
|
||||||
|
@ -337,7 +337,7 @@
|
||||||
#define PACKAGE_NAME "GStreamer"
|
#define PACKAGE_NAME "GStreamer"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING "GStreamer 0.11.0.1"
|
#define PACKAGE_STRING "GStreamer 0.11.0"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME "gstreamer"
|
#define PACKAGE_TARNAME "gstreamer"
|
||||||
|
@ -346,7 +346,7 @@
|
||||||
#undef PACKAGE_URL
|
#undef PACKAGE_URL
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION "0.11.0.1"
|
#define PACKAGE_VERSION "0.11.0"
|
||||||
|
|
||||||
/* directory where plugins are located */
|
/* directory where plugins are located */
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
|
@ -377,7 +377,7 @@
|
||||||
#undef USE_POISONING
|
#undef USE_POISONING
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "0.11.0.1"
|
#define VERSION "0.11.0"
|
||||||
|
|
||||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||||
|
|
|
@ -1039,6 +1039,25 @@ gst_mini_object_flags_get_type (void)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* enumerations from "gstpad.h" */
|
/* enumerations from "gstpad.h" */
|
||||||
|
GType
|
||||||
|
gst_pad_direction_get_type (void)
|
||||||
|
{
|
||||||
|
static gsize id = 0;
|
||||||
|
static const GEnumValue values[] = {
|
||||||
|
{C_ENUM (GST_PAD_UNKNOWN), "GST_PAD_UNKNOWN", "unknown"},
|
||||||
|
{C_ENUM (GST_PAD_SRC), "GST_PAD_SRC", "src"},
|
||||||
|
{C_ENUM (GST_PAD_SINK), "GST_PAD_SINK", "sink"},
|
||||||
|
{0, NULL, NULL}
|
||||||
|
};
|
||||||
|
|
||||||
|
if (g_once_init_enter (&id)) {
|
||||||
|
GType tmp = g_enum_register_static ("GstPadDirection", values);
|
||||||
|
g_once_init_leave (&id, tmp);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (GType) id;
|
||||||
|
}
|
||||||
|
|
||||||
GType
|
GType
|
||||||
gst_pad_link_return_get_type (void)
|
gst_pad_link_return_get_type (void)
|
||||||
{
|
{
|
||||||
|
@ -1188,25 +1207,6 @@ gst_probe_return_get_type (void)
|
||||||
return (GType) id;
|
return (GType) id;
|
||||||
}
|
}
|
||||||
|
|
||||||
GType
|
|
||||||
gst_pad_direction_get_type (void)
|
|
||||||
{
|
|
||||||
static gsize id = 0;
|
|
||||||
static const GEnumValue values[] = {
|
|
||||||
{C_ENUM (GST_PAD_UNKNOWN), "GST_PAD_UNKNOWN", "unknown"},
|
|
||||||
{C_ENUM (GST_PAD_SRC), "GST_PAD_SRC", "src"},
|
|
||||||
{C_ENUM (GST_PAD_SINK), "GST_PAD_SINK", "sink"},
|
|
||||||
{0, NULL, NULL}
|
|
||||||
};
|
|
||||||
|
|
||||||
if (g_once_init_enter (&id)) {
|
|
||||||
GType tmp = g_enum_register_static ("GstPadDirection", values);
|
|
||||||
g_once_init_leave (&id, tmp);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (GType) id;
|
|
||||||
}
|
|
||||||
|
|
||||||
GType
|
GType
|
||||||
gst_pad_flags_get_type (void)
|
gst_pad_flags_get_type (void)
|
||||||
{
|
{
|
||||||
|
@ -1215,7 +1215,6 @@ gst_pad_flags_get_type (void)
|
||||||
{C_FLAGS (GST_PAD_BLOCKED), "GST_PAD_BLOCKED", "blocked"},
|
{C_FLAGS (GST_PAD_BLOCKED), "GST_PAD_BLOCKED", "blocked"},
|
||||||
{C_FLAGS (GST_PAD_FLUSHING), "GST_PAD_FLUSHING", "flushing"},
|
{C_FLAGS (GST_PAD_FLUSHING), "GST_PAD_FLUSHING", "flushing"},
|
||||||
{C_FLAGS (GST_PAD_IN_GETCAPS), "GST_PAD_IN_GETCAPS", "in-getcaps"},
|
{C_FLAGS (GST_PAD_IN_GETCAPS), "GST_PAD_IN_GETCAPS", "in-getcaps"},
|
||||||
{C_FLAGS (GST_PAD_IN_SETCAPS), "GST_PAD_IN_SETCAPS", "in-setcaps"},
|
|
||||||
{C_FLAGS (GST_PAD_BLOCKING), "GST_PAD_BLOCKING", "blocking"},
|
{C_FLAGS (GST_PAD_BLOCKING), "GST_PAD_BLOCKING", "blocking"},
|
||||||
{C_FLAGS (GST_PAD_NEED_RECONFIGURE), "GST_PAD_NEED_RECONFIGURE",
|
{C_FLAGS (GST_PAD_NEED_RECONFIGURE), "GST_PAD_NEED_RECONFIGURE",
|
||||||
"need-reconfigure"},
|
"need-reconfigure"},
|
||||||
|
@ -1474,6 +1473,25 @@ gst_seek_flags_get_type (void)
|
||||||
return (GType) id;
|
return (GType) id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GType
|
||||||
|
gst_segment_flags_get_type (void)
|
||||||
|
{
|
||||||
|
static gsize id = 0;
|
||||||
|
static const GEnumValue values[] = {
|
||||||
|
{C_ENUM (GST_SEGMENT_FLAG_NONE), "GST_SEGMENT_FLAG_NONE", "none"},
|
||||||
|
{C_ENUM (GST_SEGMENT_FLAG_RESET), "GST_SEGMENT_FLAG_RESET", "reset"},
|
||||||
|
{C_ENUM (GST_SEGMENT_FLAG_SKIP), "GST_SEGMENT_FLAG_SKIP", "skip"},
|
||||||
|
{0, NULL, NULL}
|
||||||
|
};
|
||||||
|
|
||||||
|
if (g_once_init_enter (&id)) {
|
||||||
|
GType tmp = g_enum_register_static ("GstSegmentFlags", values);
|
||||||
|
g_once_init_leave (&id, tmp);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (GType) id;
|
||||||
|
}
|
||||||
|
|
||||||
/* enumerations from "gstsystemclock.h" */
|
/* enumerations from "gstsystemclock.h" */
|
||||||
GType
|
GType
|
||||||
gst_clock_type_get_type (void)
|
gst_clock_type_get_type (void)
|
||||||
|
|
|
@ -129,6 +129,8 @@ GType gst_mini_object_flags_get_type (void);
|
||||||
#define GST_TYPE_MINI_OBJECT_FLAGS (gst_mini_object_flags_get_type())
|
#define GST_TYPE_MINI_OBJECT_FLAGS (gst_mini_object_flags_get_type())
|
||||||
|
|
||||||
/* enumerations from "gstpad.h" */
|
/* enumerations from "gstpad.h" */
|
||||||
|
GType gst_pad_direction_get_type (void);
|
||||||
|
#define GST_TYPE_PAD_DIRECTION (gst_pad_direction_get_type())
|
||||||
GType gst_pad_link_return_get_type (void);
|
GType gst_pad_link_return_get_type (void);
|
||||||
#define GST_TYPE_PAD_LINK_RETURN (gst_pad_link_return_get_type())
|
#define GST_TYPE_PAD_LINK_RETURN (gst_pad_link_return_get_type())
|
||||||
GType gst_flow_return_get_type (void);
|
GType gst_flow_return_get_type (void);
|
||||||
|
@ -141,8 +143,6 @@ GType gst_probe_type_get_type (void);
|
||||||
#define GST_TYPE_PROBE_TYPE (gst_probe_type_get_type())
|
#define GST_TYPE_PROBE_TYPE (gst_probe_type_get_type())
|
||||||
GType gst_probe_return_get_type (void);
|
GType gst_probe_return_get_type (void);
|
||||||
#define GST_TYPE_PROBE_RETURN (gst_probe_return_get_type())
|
#define GST_TYPE_PROBE_RETURN (gst_probe_return_get_type())
|
||||||
GType gst_pad_direction_get_type (void);
|
|
||||||
#define GST_TYPE_PAD_DIRECTION (gst_pad_direction_get_type())
|
|
||||||
GType gst_pad_flags_get_type (void);
|
GType gst_pad_flags_get_type (void);
|
||||||
#define GST_TYPE_PAD_FLAGS (gst_pad_flags_get_type())
|
#define GST_TYPE_PAD_FLAGS (gst_pad_flags_get_type())
|
||||||
|
|
||||||
|
@ -179,6 +179,8 @@ GType gst_seek_type_get_type (void);
|
||||||
#define GST_TYPE_SEEK_TYPE (gst_seek_type_get_type())
|
#define GST_TYPE_SEEK_TYPE (gst_seek_type_get_type())
|
||||||
GType gst_seek_flags_get_type (void);
|
GType gst_seek_flags_get_type (void);
|
||||||
#define GST_TYPE_SEEK_FLAGS (gst_seek_flags_get_type())
|
#define GST_TYPE_SEEK_FLAGS (gst_seek_flags_get_type())
|
||||||
|
GType gst_segment_flags_get_type (void);
|
||||||
|
#define GST_TYPE_SEGMENT_FLAGS (gst_segment_flags_get_type())
|
||||||
|
|
||||||
/* enumerations from "gstsystemclock.h" */
|
/* enumerations from "gstsystemclock.h" */
|
||||||
GType gst_clock_type_get_type (void);
|
GType gst_clock_type_get_type (void);
|
||||||
|
|
|
@ -64,7 +64,7 @@ G_BEGIN_DECLS
|
||||||
* The nano version of GStreamer at compile time:
|
* The nano version of GStreamer at compile time:
|
||||||
* Actual releases have 0, GIT versions have 1, prerelease versions have 2-...
|
* Actual releases have 0, GIT versions have 1, prerelease versions have 2-...
|
||||||
*/
|
*/
|
||||||
#define GST_VERSION_NANO (1)
|
#define GST_VERSION_NANO (0)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GST_CHECK_VERSION:
|
* GST_CHECK_VERSION:
|
||||||
|
|
Loading…
Reference in a new issue