mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
prereleasing
Original commit message from CVS: prereleasing
This commit is contained in:
parent
01bc68f918
commit
751b91e26c
17 changed files with 211 additions and 203 deletions
18
ChangeLog
18
ChangeLog
|
@ -49,25 +49,25 @@
|
|||
|
||||
* gst-libs/gst/rtp/gstbasertpdepayload.c:
|
||||
(gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
|
||||
Handle downstream newsegment by sending our own newsegment before the
|
||||
next buffer to be released. (#323900)
|
||||
Handle downstream newsegment by sending our own newsegment before the
|
||||
next buffer to be released. (#323900)
|
||||
|
||||
2005-12-17 Philippe Khalaf <burger@speedy.org>
|
||||
|
||||
* gst-libs/gst/rtp/gstbasertpdepayload.c:
|
||||
(gst_base_rtp_depayload_set_gst_timestamp):
|
||||
add queue delay to new segment as well (as opposed to just the first
|
||||
buffer). (bug #322347)
|
||||
add queue delay to new segment as well (as opposed to just the first
|
||||
buffer). (bug #322347)
|
||||
|
||||
2005-12-16 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* ext/libvisual/visual.c: (make_valid_name):
|
||||
change some char* into char[]
|
||||
change some char* into char[]
|
||||
* gst/audiotestsrc/gstaudiotestsrc.c:
|
||||
(gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
|
||||
(gst_audio_test_src_create):
|
||||
* gst/audiotestsrc/gstaudiotestsrc.h:
|
||||
prepare to handle EOS and SEGMENT_DONE
|
||||
prepare to handle EOS and SEGMENT_DONE
|
||||
|
||||
2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
|
@ -119,8 +119,8 @@
|
|||
(gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
|
||||
(gst_audio_test_src_create):
|
||||
* gst/audiotestsrc/gstaudiotestsrc.h:
|
||||
Adjust to some recent api changes and add wtays new cool seeking
|
||||
capabillities
|
||||
Adjust to some recent api changes and add wtays new cool seeking
|
||||
capabillities
|
||||
|
||||
2005-12-14 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
|
@ -195,7 +195,7 @@
|
|||
|
||||
* tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
|
||||
(flush_toggle_cb), (main):
|
||||
Added checkbox do disable flushing seeks.
|
||||
Added checkbox to disable flushing seeks.
|
||||
Disable scrubbing when doing non flushing seeks.
|
||||
|
||||
2005-12-12 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
|
21
configure.ac
21
configure.ac
|
@ -6,7 +6,7 @@ AC_INIT
|
|||
|
||||
dnl when going to/from release please set the nano (fourth number) right !
|
||||
dnl releases only do Wall, cvs and prerelease does Werror too
|
||||
AS_VERSION(gst-plugins-base, GST_PLUGINS_BASE_VERSION, 0, 10, 0, 1,
|
||||
AS_VERSION(gst-plugins-base, GST_PLUGINS_BASE_VERSION, 0, 10, 0, 2,
|
||||
GST_CVS="no", GST_CVS="yes")
|
||||
|
||||
dnl can autoconf find the source ?
|
||||
|
@ -42,6 +42,9 @@ AS_LIBTOOL(GST, 0, 0, 0)
|
|||
AS_LIBTOOL_TAGS
|
||||
AM_PROG_LIBTOOL
|
||||
|
||||
dnl *** required versions of GStreamer stuff ***
|
||||
GST_REQ=0.10.0.2
|
||||
|
||||
dnl *** autotools stuff ****
|
||||
|
||||
dnl allow for different autotools
|
||||
|
@ -207,7 +210,6 @@ fi
|
|||
|
||||
dnl checks for gstreamer
|
||||
dnl uninstalled is selected preferentially -- see pkg-config(1)
|
||||
GST_REQ=0.9.7
|
||||
GST_CHECK_GST($GST_MAJORMINOR, [$GST_REQ])
|
||||
GST_CHECK_GST_BASE($GST_MAJORMINOR, [$GST_REQ])
|
||||
GST_CHECK_GST_GDP($GST_MAJORMINOR, [$GST_REQ])
|
||||
|
@ -428,10 +430,25 @@ GST_CHECK_FEATURE(CDPARANOIA, [CDParanoia], cdparanoia, [
|
|||
defined if cdda headers are in a cdda/ directory)
|
||||
fi
|
||||
AC_SUBST(CDPARANOIA_LIBS)
|
||||
|
||||
dnl FIXME: temporarily disable for release
|
||||
HAVE_CDPARANOIA=no
|
||||
], disabled, , [
|
||||
AC_MSG_NOTICE(cdparanoiasrc not stable yet, not building)
|
||||
])
|
||||
dnl FIXME : add second check somehow if that is necessary
|
||||
dnl AC_CHECK_LIB(cdda_paranoia, paranoia_init, : , HAVE_CDPARANOIA=no, -lcdda_interface )
|
||||
dnl AC_CHECK_HEADER(cdda_paranoia.h, :, HAVE_CDPARANOIA=no)
|
||||
GST_CHECK_FEATURE(EXTERNAL, [enable building of plug-ins with external deps],,
|
||||
[HAVE_EXTERNAL=yes], enabled,
|
||||
[
|
||||
AC_MSG_NOTICE(building external plug-ins)
|
||||
BUILD_EXTERNAL="yes"
|
||||
],[
|
||||
AC_MSG_NOTICE(all plug-ins with external dependencies will not be built)
|
||||
BUILD_EXTERNAL="no"
|
||||
])
|
||||
|
||||
|
||||
dnl *** Gnome VFS ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_GNOME_VFS, true)
|
||||
|
|
|
@ -23,15 +23,6 @@ interface for adjusting color balance settings
|
|||
</para>
|
||||
|
||||
|
||||
<!-- ##### SIGNAL GstColorBalance::value-changed ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
@gstcolorbalance: the object which received the signal.
|
||||
@arg1:
|
||||
@arg2:
|
||||
|
||||
<!-- ##### STRUCT GstColorBalanceClass ##### -->
|
||||
<para>
|
||||
|
||||
|
|
26
po/af.po
26
po/af.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins 0.7.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2004-03-18 14:16+0200\n"
|
||||
"Last-Translator: Petri Jooste <rkwjpj@puk.ac.za>\n"
|
||||
"Language-Team: Afrikaans <i18n@af.org.za>\n"
|
||||
|
@ -60,15 +60,15 @@ msgstr ""
|
|||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "discid"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "Kon nie CD-toestel oopmaak om te lees nie."
|
||||
|
||||
|
@ -87,45 +87,45 @@ msgstr "Geen l
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "Kon nie vfs-lêer \"%s\" toemaak nie."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "Toestel \"%s\" is nie 'n vasleggingtoestel nie."
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
26
po/az.po
26
po/az.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins-0.8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2004-03-19 18:29+0200\n"
|
||||
"Last-Translator: Metin Amiroff <metin@karegen.com>\n"
|
||||
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
|
||||
|
@ -61,15 +61,15 @@ msgstr ""
|
|||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "discid"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "CD avadanlığı oxuma üçün açıla bilmədi."
|
||||
|
||||
|
@ -88,45 +88,45 @@ msgstr "Fayl adı verilməyib."
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "\"%s\" vfs faylı bağlana bilmədi."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "\"%s\" avadanlığı capture avadanlığı deyil."
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
26
po/cs.po
26
po/cs.po
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins 0.8.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2004-08-08 22:58+0200\n"
|
||||
"Last-Translator: Miloslav Trmac <mitr@volny.cz>\n"
|
||||
"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
|
||||
|
@ -63,15 +63,15 @@ msgstr ""
|
|||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "discid"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "Nemohu otevřít zařízení CD pro čtení."
|
||||
|
||||
|
@ -89,45 +89,45 @@ msgstr "Nezadán název souboru"
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "Nemohu zavřít soubor vfs \"%s\"."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "Zařízení \"%s\" není zachytávací zařízení."
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
26
po/en_GB.po
26
po/en_GB.po
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins 0.8.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2004-04-26 10:41-0400\n"
|
||||
"Last-Translator: Gareth Owen <gowen72@yahoo.com>\n"
|
||||
"Language-Team: English (British) <en_gb@li.org>\n"
|
||||
|
@ -59,15 +59,15 @@ msgstr ""
|
|||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "discid"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "Could not open CD device for reading."
|
||||
|
||||
|
@ -85,45 +85,45 @@ msgstr "No filename given"
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "Could not close vfs file \"%s\"."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "Device \"%s\" is not a capture device."
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
26
po/hu.po
26
po/hu.po
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins 0.8.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2004-07-18 11:03+0200\n"
|
||||
"Last-Translator: Laszlo Dvornik <dvornik@invitel.hu>\n"
|
||||
"Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
|
||||
|
@ -59,15 +59,15 @@ msgstr ""
|
|||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "discid"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "Nem lehet olvasásra megnyitni a CD-eszközt."
|
||||
|
||||
|
@ -85,45 +85,45 @@ msgstr "Nincs fájlnév megadva"
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "Nem lehet bezárni a(z) \"%s\" vfs-fájlt."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "A(z) \"%s\" eszköz nem rögzítőeszköz."
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
26
po/it.po
26
po/it.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins 0.8.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2004-11-07 19:11+0100\n"
|
||||
"Last-Translator: Luca Ferretti <elle.uca@infinito.it>\n"
|
||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||
|
@ -60,15 +60,15 @@ msgstr ""
|
|||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "discid"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "Impossibile aprire il device CD in lettura."
|
||||
|
||||
|
@ -86,45 +86,45 @@ msgstr "Nessun nome di file fornito"
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "Impossibile chiudere il file vfs «%s»."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "Il device «%s» non è un device di cattura."
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
26
po/nb.po
26
po/nb.po
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins 0.8.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2004-10-04 15:54+0200\n"
|
||||
"Last-Translator: Kjartan Maraas <kmaraas@broadpark.no>\n"
|
||||
"Language-Team: Norwegian Bokmaal <i18n-nb@lister.ping.uio.no>\n"
|
||||
|
@ -59,15 +59,15 @@ msgstr ""
|
|||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "discid"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "Kunne ikke åpne CD-enheten for lesing."
|
||||
|
||||
|
@ -85,45 +85,45 @@ msgstr "Ingen filnavn oppgitt"
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "Kunne ikke lukke VFS-fil «%s»."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "Enhet «%s» kan ikke fange data."
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
26
po/nl.po
26
po/nl.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins 0.8.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2004-08-05 16:26+0200\n"
|
||||
"Last-Translator: Elros Cyriatan <cyriatan@fastmail.fm>\n"
|
||||
"Language-Team: Dutch <vertaling@nl.linux.org>\n"
|
||||
|
@ -60,15 +60,15 @@ msgstr ""
|
|||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "discid"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "Kon het CD-apparaat niet openen om te lezen."
|
||||
|
||||
|
@ -86,45 +86,45 @@ msgstr "Geen bestandsnaam opgegeven"
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "Kon het VFS-bestand \"%s\" niet sluiten."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "Apparaat \"%s\" is niet een opvangapparaat."
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
26
po/or.po
26
po/or.po
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins-0.8.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2004-09-27 13:32+0530\n"
|
||||
"Last-Translator: Gora Mohanty <gora_mohanty@yahoo.co.in>\n"
|
||||
"Language-Team: Oriya <gora_mohanty@yahoo.co.in>\n"
|
||||
|
@ -61,15 +61,15 @@ msgstr ""
|
|||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "discid"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "ସି.ଡି. ଯନ୍ତ୍ର ପଢ଼ିବା ପାଇଁ ଖୋଲିହେଲା ନାହିଁ."
|
||||
|
||||
|
@ -87,45 +87,45 @@ msgstr "କୌଣସି ଫାଇଲନାମ ଦିଆଯାଇ ନାହିଁ
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "ଭି.ଏଫ.ଏସ. ଫାଇଲ \"%s\" ବନ୍ଦ କରିହେଲା ନାହିଁ."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "\"%s\" ଯନ୍ତ୍ର ଗୋଟିଏ ଅନୁଲିପିକାର ନୁହେଁ."
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
26
po/sq.po
26
po/sq.po
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins 0.8.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2004-08-07 20:29+0200\n"
|
||||
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
|
||||
"Language-Team: Albanian <begraj@hotmail.com>\n"
|
||||
|
@ -59,15 +59,15 @@ msgstr ""
|
|||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "discid"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "I pamundur hapja e dispozitivit CD për lexim."
|
||||
|
||||
|
@ -85,45 +85,45 @@ msgstr "Nuk është dhënë asnjë emër file"
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "E pamundur mbyllja e file vfs \"%s\"."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "Dispozitivi \"%s\" nuk është një dispozitiv marrje."
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
26
po/sr.po
26
po/sr.po
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins 0.7.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2004-03-13 00:18+0100\n"
|
||||
"Last-Translator: Danilo Segan <dsegan@gmx.net>\n"
|
||||
"Language-Team: Serbian <gnu@prevod.org>\n"
|
||||
|
@ -61,15 +61,15 @@ msgstr ""
|
|||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "discid"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "Не могу да отворим ЦД уређај ради читања."
|
||||
|
||||
|
@ -88,45 +88,45 @@ msgstr "Име датотеке није задато."
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "Не могу да затворим ВСД датотеку „%s“."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "Уређај „%s“ не представља уређај за снимање."
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
28
po/sv.po
28
po/sv.po
|
@ -2,13 +2,13 @@
|
|||
# Copyright (C) 2004 Free Software Foundation, Inc.
|
||||
# Christian Rose <menthos@menthos.com>, 2004.
|
||||
#
|
||||
# $Id: sv.po,v 1.36 2005/12/05 16:16:54 thomasvs Exp $
|
||||
# $Id: sv.po,v 1.37 2005/12/20 15:57:06 thomasvs Exp $
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins 0.8.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2004-08-03 20:53+0200\n"
|
||||
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
|
||||
"Language-Team: Swedish <sv@li.org>\n"
|
||||
|
@ -63,16 +63,16 @@ msgstr "Spela"
|
|||
msgid "Capture"
|
||||
msgstr "Satir"
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
#, fuzzy
|
||||
msgid "discid"
|
||||
msgstr "Ingen skiva"
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "Kunde inte öppna cd-enheten för läsning."
|
||||
|
||||
|
@ -90,45 +90,45 @@ msgstr "Inget filnamn angivet"
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "Kunde inte stänga vfs-filen \"%s\"."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "%s är ingen cdrom-enhet"
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
26
po/uk.po
26
po/uk.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins 0.8.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2004-08-03 15:40+0200\n"
|
||||
"Last-Translator: Maxim V. Dziumanenko <mvd@mylinux.com.ua>\n"
|
||||
"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
|
||||
|
@ -60,15 +60,15 @@ msgstr ""
|
|||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "discid"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "Не вдається відкрити пристрій компакт-дисків для читання."
|
||||
|
||||
|
@ -87,45 +87,45 @@ msgstr "Не вказано файл"
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "Не вдається закрити файл віртуальної файлової системи \"%s\"."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "Пристрій \"%s\" не є пристроєм захоплення."
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
26
po/vi.po
26
po/vi.po
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gst-plugins-0.8.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-12-05 17:15+0100\n"
|
||||
"POT-Creation-Date: 2005-12-20 13:14+0100\n"
|
||||
"PO-Revision-Date: 2005-01-22 17:17+0930\n"
|
||||
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
|
||||
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net> \n"
|
||||
|
@ -61,15 +61,15 @@ msgstr ""
|
|||
msgid "Capture"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "discid"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:279
|
||||
#: ext/cdparanoia/gstcdparanoia.c:305
|
||||
msgid "CDDA discid for metadata retrieval"
|
||||
msgstr ""
|
||||
|
||||
#: ext/cdparanoia/gstcdparanoia.c:683 ext/cdparanoia/gstcdparanoia.c:699
|
||||
#: ext/cdparanoia/gstcdparanoia.c:808 ext/cdparanoia/gstcdparanoia.c:814
|
||||
msgid "Could not open CD device for reading."
|
||||
msgstr "Đã không mở được thiết bị CD để đọc"
|
||||
|
||||
|
@ -87,45 +87,45 @@ msgstr "Chưa nhập tên tập tin "
|
|||
msgid "Could not close vfs file \"%s\"."
|
||||
msgstr "Đã không đóng được tập tin vfs \"%s\"."
|
||||
|
||||
#: ext/ogg/gstoggdemux.c:2473
|
||||
#: ext/ogg/gstoggdemux.c:2503
|
||||
msgid "Internal data stream error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1333
|
||||
#: gst/playback/gstplaybasebin.c:1347
|
||||
msgid "No URI specified to play from."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1339
|
||||
#: gst/playback/gstplaybasebin.c:1353
|
||||
#, c-format
|
||||
msgid "No URI handler implemented for \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1343
|
||||
#: gst/playback/gstplaybasebin.c:1357
|
||||
#, c-format
|
||||
msgid "Invalid URI \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1350
|
||||
#: gst/playback/gstplaybasebin.c:1364
|
||||
msgid "Could not create \"decodebin\" element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1416
|
||||
#: gst/playback/gstplaybasebin.c:1430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"You do not have a decoder installed to handle \"%s\". You might need to "
|
||||
"install the necessary plugins."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybasebin.c:1419
|
||||
#: gst/playback/gstplaybasebin.c:1433
|
||||
#, fuzzy, c-format
|
||||
msgid "\"%s\" is not a media file"
|
||||
msgstr "Thiết bị \"%s\" không bắt gì được."
|
||||
|
||||
#: gst/playback/gstplaybin.c:411
|
||||
#: gst/playback/gstplaybin.c:434
|
||||
msgid "Both autovideosink and xvimagesink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/playback/gstplaybin.c:541
|
||||
#: gst/playback/gstplaybin.c:564
|
||||
msgid "Both autoaudiosink and alsasink elements are missing."
|
||||
msgstr ""
|
||||
|
||||
|
|
Loading…
Reference in a new issue