From f3eac7de22d576edf7d0e74830d8336f81dc376b Mon Sep 17 00:00:00 2001 From: David Schleef Date: Sat, 4 Jun 2011 00:30:15 -0700 Subject: [PATCH 1/3] Work around changes in g_atomic API See #651514 for details. It's apparently impossible to write code that avoids both type punning warnings with old g_atomic headers and assertions in the new. Thus, macros and a version check. --- gst/glib-compat-private.h | 20 ++++++++++++++++++++ gst/gstatomicqueue.c | 21 +++++++++++---------- gst/gstelementfactory.c | 4 ++-- gst/gstpoll.c | 9 +++++---- gst/gstsystemclock.c | 5 +++-- gst/gstutils.c | 3 ++- plugins/elements/gstmultiqueue.c | 5 +++-- tests/benchmarks/gstclockstress.c | 3 ++- 8 files changed, 48 insertions(+), 22 deletions(-) diff --git a/gst/glib-compat-private.h b/gst/glib-compat-private.h index f653ccb96a..7b5d6cf860 100644 --- a/gst/glib-compat-private.h +++ b/gst/glib-compat-private.h @@ -26,6 +26,26 @@ typedef struct stat GStatBuf; #define GLIB_HAS_GDATETIME #endif +/* See bug #651514 */ +#if GLIB_CHECK_VERSION(2,29,5) +#define G_ATOMIC_POINTER_COMPARE_AND_EXCHANGE(a,b,c) \ + g_atomic_pointer_compare_and_exchange ((a),(b),(c)) +#define G_ATOMIC_INT_COMPARE_AND_EXCHANGE(a,b,c) \ + g_atomic_int_compare_and_exchange ((a),(b),(c)) +#else +#define G_ATOMIC_POINTER_COMPARE_AND_EXCHANGE(a,b,c) \ + g_atomic_pointer_compare_and_exchange ((volatile gpointer *)(a),(b),(c)) +#define G_ATOMIC_INT_COMPARE_AND_EXCHANGE(a,b,c) \ + g_atomic_int_compare_and_exchange ((volatile int *)(a),(b),(c)) +#endif + +/* See bug #651514 */ +#if GLIB_CHECK_VERSION(2,29,5) +#define G_ATOMIC_INT_ADD(a,b) g_atomic_int_add ((a),(b)) +#else +#define G_ATOMIC_INT_ADD(a,b) g_atomic_int_exchange_and_add ((a),(b)) +#endif + /* copies */ /* adaptations */ diff --git a/gst/gstatomicqueue.c b/gst/gstatomicqueue.c index 31ac77096a..5b21be63ee 100644 --- a/gst/gstatomicqueue.c +++ b/gst/gstatomicqueue.c @@ -26,6 +26,7 @@ #include #include "gstatomicqueue.h" +#include "glib-compat-private.h" /** * SECTION:gstatomicqueue @@ -112,8 +113,8 @@ add_to_free_list (GstAtomicQueue * queue, GstAQueueMem * mem) { do { mem->free = g_atomic_pointer_get (&queue->free_list); - } while (!g_atomic_pointer_compare_and_exchange ((gpointer *) & - queue->free_list, mem->free, mem)); + } while (!G_ATOMIC_POINTER_COMPARE_AND_EXCHANGE (&queue->free_list, + mem->free, mem)); } static void @@ -126,8 +127,8 @@ clear_free_list (GstAtomicQueue * queue) free_list = g_atomic_pointer_get (&queue->free_list); if (free_list == NULL) return; - } while (!g_atomic_pointer_compare_and_exchange ((gpointer *) & - queue->free_list, free_list, NULL)); + } while (!G_ATOMIC_POINTER_COMPARE_AND_EXCHANGE (&queue->free_list, free_list, + NULL)); while (free_list) { GstAQueueMem *next = free_list->free; @@ -247,8 +248,8 @@ gst_atomic_queue_peek (GstAtomicQueue * queue) /* now we try to move the next array as the head memory. If we fail to do that, * some other reader managed to do it first and we retry */ - if (!g_atomic_pointer_compare_and_exchange ((gpointer *) & - queue->head_mem, head_mem, next)) + if (!G_ATOMIC_POINTER_COMPARE_AND_EXCHANGE (&queue->head_mem, head_mem, + next)) continue; /* when we managed to swing the head pointer the old head is now @@ -304,8 +305,8 @@ gst_atomic_queue_pop (GstAtomicQueue * queue) /* now we try to move the next array as the head memory. If we fail to do that, * some other reader managed to do it first and we retry */ - if (!g_atomic_pointer_compare_and_exchange ((gpointer *) & - queue->head_mem, head_mem, next)) + if (!G_ATOMIC_POINTER_COMPARE_AND_EXCHANGE (&queue->head_mem, head_mem, + next)) continue; /* when we managed to swing the head pointer the old head is now @@ -362,8 +363,8 @@ gst_atomic_queue_push (GstAtomicQueue * queue, gpointer data) mem = new_queue_mem ((size << 1) + 1, tail); /* try to make our new array visible to other writers */ - if (!g_atomic_pointer_compare_and_exchange ((gpointer *) & - queue->tail_mem, tail_mem, mem)) { + if (!G_ATOMIC_POINTER_COMPARE_AND_EXCHANGE (&queue->tail_mem, tail_mem, + mem)) { /* we tried to swap the new writer array but something changed. This is * because some other writer beat us to it, we free our memory and try * again */ diff --git a/gst/gstelementfactory.c b/gst/gstelementfactory.c index 0c3d8aae69..3549432d8c 100644 --- a/gst/gstelementfactory.c +++ b/gst/gstelementfactory.c @@ -394,8 +394,8 @@ gst_element_factory_create (GstElementFactory * factory, const gchar * name) * an element at the same moment */ oclass = GST_ELEMENT_GET_CLASS (element); - if (!g_atomic_pointer_compare_and_exchange ( - (gpointer) & oclass->elementfactory, NULL, factory)) + if (!G_ATOMIC_POINTER_COMPARE_AND_EXCHANGE (&oclass->elementfactory, NULL, + factory)) gst_object_unref (factory); GST_DEBUG ("created element \"%s\"", GST_PLUGIN_FEATURE_NAME (factory)); diff --git a/gst/gstpoll.c b/gst/gstpoll.c index 8bb282a92f..d83705940d 100644 --- a/gst/gstpoll.c +++ b/gst/gstpoll.c @@ -57,6 +57,7 @@ #endif #include "gst_private.h" +#include "glib-compat-private.h" #include @@ -154,8 +155,8 @@ static gboolean gst_poll_add_fd_unlocked (GstPoll * set, GstPollFD * fd); #define IS_FLUSHING(s) (g_atomic_int_get(&(s)->flushing)) #define SET_FLUSHING(s,val) (g_atomic_int_set(&(s)->flushing, (val))) -#define INC_WAITING(s) (g_atomic_int_exchange_and_add(&(s)->waiting, 1)) -#define DEC_WAITING(s) (g_atomic_int_exchange_and_add(&(s)->waiting, -1)) +#define INC_WAITING(s) (G_ATOMIC_INT_ADD(&(s)->waiting, 1)) +#define DEC_WAITING(s) (G_ATOMIC_INT_ADD(&(s)->waiting, -1)) #define GET_WAITING(s) (g_atomic_int_get(&(s)->waiting)) #define TEST_REBUILD(s) (g_atomic_int_compare_and_exchange(&(s)->rebuild, 1, 0)) @@ -176,7 +177,7 @@ raise_wakeup (GstPoll * set) { gboolean result = TRUE; - if (g_atomic_int_exchange_and_add (&set->control_pending, 1) == 0) { + if (G_ATOMIC_INT_ADD (&set->control_pending, 1) == 0) { /* raise when nothing pending */ result = WAKE_EVENT (set); } @@ -214,7 +215,7 @@ release_all_wakeup (GstPoll * set) break; else /* retry again until we read it successfully */ - g_atomic_int_exchange_and_add (&set->control_pending, 1); + G_ATOMIC_INT_ADD (&set->control_pending, 1); } } return old; diff --git a/gst/gstsystemclock.c b/gst/gstsystemclock.c index c29f83022c..938704e544 100644 --- a/gst/gstsystemclock.c +++ b/gst/gstsystemclock.c @@ -44,6 +44,7 @@ #include "gstenumtypes.h" #include "gstpoll.h" #include "gstutils.h" +#include "glib-compat-private.h" #include @@ -56,8 +57,8 @@ #define GET_ENTRY_STATUS(e) (g_atomic_int_get(&GST_CLOCK_ENTRY_STATUS(e))) #define SET_ENTRY_STATUS(e,val) (g_atomic_int_set(&GST_CLOCK_ENTRY_STATUS(e),(val))) -#define CAS_ENTRY_STATUS(e,old,val) (g_atomic_int_compare_and_exchange(\ - ((volatile gint *)&GST_CLOCK_ENTRY_STATUS(e)), (old), (val))) +#define CAS_ENTRY_STATUS(e,old,val) (G_ATOMIC_INT_COMPARE_AND_EXCHANGE(\ + (&GST_CLOCK_ENTRY_STATUS(e)), (old), (val))) /* Define this to get some extra debug about jitter from each clock_wait */ #undef WAIT_DEBUGGING diff --git a/gst/gstutils.c b/gst/gstutils.c index fcae66e896..06438cb20d 100644 --- a/gst/gstutils.c +++ b/gst/gstutils.c @@ -39,6 +39,7 @@ #include "gstparse.h" #include "gstvalue.h" #include "gst-i18n-lib.h" +#include "glib-compat-private.h" #include /** @@ -704,7 +705,7 @@ guint32 gst_util_seqnum_next (void) { static gint counter = 0; - return g_atomic_int_exchange_and_add (&counter, 1); + return G_ATOMIC_INT_ADD (&counter, 1); } /** diff --git a/plugins/elements/gstmultiqueue.c b/plugins/elements/gstmultiqueue.c index 38e8bd1fdb..9f39155afc 100644 --- a/plugins/elements/gstmultiqueue.c +++ b/plugins/elements/gstmultiqueue.c @@ -112,6 +112,7 @@ #include #include #include "gstmultiqueue.h" +#include /** * GstSingleQueue: @@ -1376,7 +1377,7 @@ gst_multi_queue_chain (GstPad * pad, GstBuffer * buffer) goto was_eos; /* Get a unique incrementing id */ - curid = g_atomic_int_exchange_and_add ((gint *) & mq->counter, 1); + curid = G_ATOMIC_INT_ADD ((gint *) & mq->counter, 1); GST_LOG_OBJECT (mq, "SingleQueue %d : about to enqueue buffer %p with id %d", sq->id, buffer, curid); @@ -1482,7 +1483,7 @@ gst_multi_queue_sink_event (GstPad * pad, GstEvent * event) goto was_eos; /* Get an unique incrementing id. */ - curid = g_atomic_int_exchange_and_add ((gint *) & mq->counter, 1); + curid = G_ATOMIC_INT_ADD ((gint *) & mq->counter, 1); item = gst_multi_queue_event_item_new ((GstMiniObject *) event, curid); diff --git a/tests/benchmarks/gstclockstress.c b/tests/benchmarks/gstclockstress.c index 6c1895cd27..b0f721b3d5 100644 --- a/tests/benchmarks/gstclockstress.c +++ b/tests/benchmarks/gstclockstress.c @@ -20,6 +20,7 @@ #include #include #include +#include #define MAX_THREADS 100 @@ -34,7 +35,7 @@ run_test (void *user_data) while (running) { gst_clock_get_time (sysclock); - prev = g_atomic_int_exchange_and_add (&count, 1); + prev = G_ATOMIC_INT_ADD (&count, 1); if (prev == G_MAXINT) g_warning ("overflow"); } From 20845a3771b00b534ce648a906674182f546e1b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 4 Jun 2011 14:02:23 +0100 Subject: [PATCH 2/3] po: update for new translatable string --- po/af.po | 6 +++++- po/az.po | 6 +++++- po/be.po | 6 +++++- po/bg.po | 6 +++++- po/ca.po | 6 +++++- po/cs.po | 6 +++++- po/da.po | 6 +++++- po/de.po | 6 +++++- po/el.po | 6 +++++- po/en_GB.po | 6 +++++- po/es.po | 6 +++++- po/eu.po | 6 +++++- po/fi.po | 6 +++++- po/fr.po | 6 +++++- po/gl.po | 6 +++++- po/hu.po | 6 +++++- po/id.po | 6 +++++- po/it.po | 6 +++++- po/ja.po | 6 +++++- po/lt.po | 6 +++++- po/nb.po | 6 +++++- po/nl.po | 6 +++++- po/pl.po | 6 +++++- po/pt_BR.po | 6 +++++- po/ro.po | 6 +++++- po/ru.po | 6 +++++- po/rw.po | 6 +++++- po/sk.po | 6 +++++- po/sl.po | 6 +++++- po/sq.po | 6 +++++- po/sr.po | 6 +++++- po/sv.po | 6 +++++- po/tr.po | 6 +++++- po/uk.po | 6 +++++- po/vi.po | 6 +++++- po/zh_CN.po | 6 +++++- po/zh_TW.po | 6 +++++- 37 files changed, 185 insertions(+), 37 deletions(-) diff --git a/po/af.po b/po/af.po index a181e82b61..dfd93b85b3 100644 --- a/po/af.po +++ b/po/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.9.7\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2005-12-05 11:45+0200\n" "Last-Translator: Petri Jooste \n" "Language-Team: Afrikaans \n" @@ -1128,6 +1128,10 @@ msgstr "" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Pyplyn word gestel na NULL ...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "geen element \"%s\"" + msgid "Output tags (also known as metadata)" msgstr "Wys etikette (ook bekend as metadata)" diff --git a/po/az.po b/po/az.po index 4ce2582aa7..c022a6be8c 100644 --- a/po/az.po +++ b/po/az.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer-0.8.0\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2004-03-19 18:40+0200\n" "Last-Translator: Metin Amiroff \n" "Language-Team: Azerbaijani \n" @@ -1075,6 +1075,10 @@ msgstr "" msgid "Interrupt: Stopping pipeline ...\n" msgstr "" +#, c-format +msgid "Missing element: %s\n" +msgstr "" + msgid "Output tags (also known as metadata)" msgstr "" diff --git a/po/be.po b/po/be.po index dbd76abf8b..6da856d2bb 100644 --- a/po/be.po +++ b/po/be.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.9.7\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2006-01-18 22:26+0200\n" "Last-Translator: Ales Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -1084,6 +1084,10 @@ msgstr "" msgid "Interrupt: Stopping pipeline ...\n" msgstr "" +#, c-format +msgid "Missing element: %s\n" +msgstr "" + msgid "Output tags (also known as metadata)" msgstr "" diff --git a/po/bg.po b/po/bg.po index 4c9489d068..29d96ef67b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.32.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2011-04-26 22:40+0300\n" "Last-Translator: Alexander Shopov \n" "Language-Team: Bulgarian \n" @@ -1126,6 +1126,10 @@ msgstr "Задаване на състоянието на %s по заявка msgid "Interrupt: Stopping pipeline ...\n" msgstr "Прекъсване: Конвейерът се спира…\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "елементът „%s“ липсва" + msgid "Output tags (also known as metadata)" msgstr "Изходни съобщения за етикетите (метаданните)" diff --git a/po/ca.po b/po/ca.po index 0edb1bfb95..bebce39be1 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-11-04 19:41+0100\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -1132,6 +1132,10 @@ msgstr "S'està establint l'estat a %s a petició de %s…\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Interrupció: S'està aturant el conducte…\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "no hi ha cap element «%s»" + msgid "Output tags (also known as metadata)" msgstr "Mostra els marcadors (també coneguts com metadades)" diff --git a/po/cs.po b/po/cs.po index 4e42da628e..19176b4555 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.20.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2008-10-12 12:12+0200\n" "Last-Translator: Miloslav Trmac \n" "Language-Team: Czech \n" @@ -1140,6 +1140,10 @@ msgstr "" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Přerušení: Zastavuji rouru ...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "element \"%s\" neexistuje" + msgid "Output tags (also known as metadata)" msgstr "Vypsat tagy (také známé jako metadata)" diff --git a/po/da.po b/po/da.po index 813661a6d9..f9bdaf8434 100644 --- a/po/da.po +++ b/po/da.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-11-06 22:52+0100\n" "Last-Translator: Mogens Jaeger \n" "Language-Team: Danish \n" @@ -1127,6 +1127,10 @@ msgstr "Sætter tilstand til %s som krævet af %s...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Afbrydelse: Stopper rørledning...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "intet element \"%s\"" + msgid "Output tags (also known as metadata)" msgstr "Uddatamærkater (også kendt som metadata)" diff --git a/po/de.po b/po/de.po index cc8741a0c4..36f8ae4138 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.32.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2011-04-27 23:44+0200\n" "Last-Translator: Christian Kirbach \n" "Language-Team: German \n" @@ -1149,6 +1149,10 @@ msgstr "Status wird auf %s gesetzt wie von %s gewünscht...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Interrupt: Leitung wird gestoppt ...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "Kein Element »%s«" + msgid "Output tags (also known as metadata)" msgstr "Kennzeichen (auch bekannt als Metadaten) ausgeben" diff --git a/po/el.po b/po/el.po index c4409ca7bf..f2585be49a 100644 --- a/po/el.po +++ b/po/el.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer-0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-11-29 11:14+0200\n" "Last-Translator: Michael Kotsarinis \n" "Language-Team: Greek \n" @@ -1142,6 +1142,10 @@ msgstr "Ορισμός κατάστασης σε %s όπως ζητήθηκε α msgid "Interrupt: Stopping pipeline ...\n" msgstr "Διακοπή: Τερματισμός διασωλήνωσης…\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "δεν υπάρχει στοιχείο «%s»" + msgid "Output tags (also known as metadata)" msgstr "Ετικέτες εξόδου (επίσης γνωστές ως μεταδεδομένα)" diff --git a/po/en_GB.po b/po/en_GB.po index f77ab29856..fd70295d38 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.8.1\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2004-04-26 10:36-0400\n" "Last-Translator: Gareth Owen \n" "Language-Team: English (British) \n" @@ -1132,6 +1132,10 @@ msgstr "" msgid "Interrupt: Stopping pipeline ...\n" msgstr "" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "no element \"%s\"" + msgid "Output tags (also known as metadata)" msgstr "Output tags (also known as metadata)" diff --git a/po/es.po b/po/es.po index c579819a88..84e17719b5 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-11-01 18:11+0100\n" "Last-Translator: Jorge González González \n" "Language-Team: Spanish \n" @@ -1138,6 +1138,10 @@ msgstr "Estableciendo el estado a %s según lo solicitó %s…\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Interrumpir: parando el conducto …\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "no hay un elemento «%s»" + msgid "Output tags (also known as metadata)" msgstr "Etiquetas de salida (también conocidos como metadatos)" diff --git a/po/eu.po b/po/eu.po index 529077fb5d..ddd431a7b5 100644 --- a/po/eu.po +++ b/po/eu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer-0.10.26.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-03-25 13:10+0100\n" "Last-Translator: Mikel Olasagasti Uranga \n" "Language-Team: Basque \n" @@ -1134,6 +1134,10 @@ msgstr "Egoera %s(e)ra ezartzen %s(e)k eskatu bezala...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Eten: Kanalizazioa gelditzen... \n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "ez dago \"%s\" elementua" + msgid "Output tags (also known as metadata)" msgstr "Erakutsi etiketak (metadatu gisa ere ezagutzen direnak)" diff --git a/po/fi.po b/po/fi.po index 1add3ba935..0f77f4d01c 100644 --- a/po/fi.po +++ b/po/fi.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-11-17 23:10+0200\n" "Last-Translator: Tommi Vainikainen \n" "Language-Team: Finnish \n" @@ -1125,6 +1125,10 @@ msgstr "Asetetaan tilaan %s kuten %s pyysi...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Keskeytys: Pysäytetään liukuhihna ...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "ei elementtiä ”%s”" + msgid "Output tags (also known as metadata)" msgstr "Tulostemerkinnät (tunnetaan myös metadatana)" diff --git a/po/fr.po b/po/fr.po index 9641e7779e..b4adae0ba6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.32.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2011-04-28 09:34+0200\n" "Last-Translator: Claude Paroz \n" "Language-Team: French \n" @@ -1133,6 +1133,10 @@ msgstr "Définition de l'état à %s comme demandé par %s...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Interruption : arrêt du pipeline...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "pas d'élément « %s »" + msgid "Output tags (also known as metadata)" msgstr "Affiche les balises (aussi connues sous le nom de métadonnées)" diff --git a/po/gl.po b/po/gl.po index a58aec8ac2..f456f8f486 100644 --- a/po/gl.po +++ b/po/gl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.31.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2011-04-13 05:19+0000\n" "Last-Translator: Francisco Diéguez \n" "Language-Team: Galician \n" @@ -1126,6 +1126,10 @@ msgstr "Estabelecendo o estado a %s segundo foi solicitado por %s...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Interromper: parando a canalización …\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "non hai un elemento «%s»" + msgid "Output tags (also known as metadata)" msgstr "Etiquetas de saída (tamén coñecido como metadatos)" diff --git a/po/hu.po b/po/hu.po index 74b2fd76f1..ebe852157b 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-11-01 13:39+0100\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -1117,6 +1117,10 @@ msgstr "Állapot beállítása erre: %s, %s kérésének megfelelően…\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Megszakítás: Adatcsatorna leállítása…\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "nincs „%s” elem" + msgid "Output tags (also known as metadata)" msgstr "Kimeneti címkék (metaadatok)" diff --git a/po/id.po b/po/id.po index ea40ed1338..9b88775bd5 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.29.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-06-29 21:55+0700\n" "Last-Translator: Andhika Padmawan \n" "Language-Team: Indonesian \n" @@ -1124,6 +1124,10 @@ msgstr "Mengatur tingkat ke %s seperti diminta oleh %s...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Interupsi: Menghentikan baris pipa ...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "tak ada elemen \"%s\"" + msgid "Output tags (also known as metadata)" msgstr "Tag keluaran (juga dikenal sebagai metadata)" diff --git a/po/it.po b/po/it.po index c48f6706f9..f26d74054c 100644 --- a/po/it.po +++ b/po/it.po @@ -106,7 +106,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-10-25 10:03+0200\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -1294,6 +1294,10 @@ msgstr "Impostazione dello stato a %s come richiesto da %s...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Interrotto: arresto della pipeline ...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "nessun elemento «%s»" + # -t, --tags msgid "Output tags (also known as metadata)" msgstr "Stampa i tag (anche noti come metadati)" diff --git a/po/ja.po b/po/ja.po index dc0d8c55bd..6cab73a70c 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.20.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2008-10-16 19:57+0900\n" "Last-Translator: Makoto Kato \n" "Language-Team: Japanese \n" @@ -1102,6 +1102,10 @@ msgstr "" msgid "Interrupt: Stopping pipeline ...\n" msgstr "割り込み: パイプラインを停止しています...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "エレメント \"%s\" がありません" + msgid "Output tags (also known as metadata)" msgstr "タグ (メタデータ) を出力する" diff --git a/po/lt.po b/po/lt.po index 119cf67ef2..0ea69f5479 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.29.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-07-16 00:50+0300\n" "Last-Translator: Žygimantas Beručka \n" "Language-Team: Lithuanian \n" @@ -1128,6 +1128,10 @@ msgstr "Nustatoma būsena į %s, kaip prašė %s...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Pertraukimas: stabdomas konvejeris...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "nėra elemento „%s“" + msgid "Output tags (also known as metadata)" msgstr "Išvesti žymas (dar žinomas kaip metaduomenys)" diff --git a/po/nb.po b/po/nb.po index 0fd1f5bb31..c9d96c98fb 100644 --- a/po/nb.po +++ b/po/nb.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-10-24 21:36+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian Bokmaal \n" @@ -1087,6 +1087,10 @@ msgstr "" msgid "Interrupt: Stopping pipeline ...\n" msgstr "" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "ingen element «%s»" + msgid "Output tags (also known as metadata)" msgstr "" diff --git a/po/nl.po b/po/nl.po index 65965491ea..03852216c8 100644 --- a/po/nl.po +++ b/po/nl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.32.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2011-04-26 23:10+0200\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" @@ -1134,6 +1134,10 @@ msgstr "Stel de status in op %s zoals verzocht door %s...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Interrupt: Pijplijn ingesteld op gestopt ...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "geen element \"%s\"" + msgid "Output tags (also known as metadata)" msgstr "Tags (ook bekend als metadata) weergeven" diff --git a/po/pl.po b/po/pl.po index aa1e2db30f..f49bb22372 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.32.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2011-04-26 17:54+0200\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" @@ -1128,6 +1128,10 @@ msgstr "Ustawianie stanu na %s zgodnie z wymaganiem %s...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Przerwanie: Zatrzymywanie potoku...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "brak elementu \"%s\"" + msgid "Output tags (also known as metadata)" msgstr "Wypisanie znaczników (znanych także jako metadane)" diff --git a/po/pt_BR.po b/po/pt_BR.po index d144759925..4a59558b9b 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer-0.10.31.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2011-01-08 01:36-0300\n" "Last-Translator: Fabrício Godoy \n" "Language-Team: Brazilian Portuguese \n" @@ -1144,6 +1144,10 @@ msgstr "Definindo estado de %s como requerido por %s...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Interrupção: Parando a fila de processamento...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "nenhum elemento \"%s\"" + msgid "Output tags (also known as metadata)" msgstr "Exibir etiquetas (metadados)" diff --git a/po/ro.po b/po/ro.po index e7e7e3f966..ab39aac88f 100644 --- a/po/ro.po +++ b/po/ro.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.29.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-08-16 01:10+0300\n" "Last-Translator: Lucian Adrian Grijincu \n" "Language-Team: Romanian \n" @@ -1150,6 +1150,10 @@ msgstr "Se definește starea la %s după cum a fost cerut de %s...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Întrerupere: Se oprește linia de asamblare ...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "niciun element „%s”" + msgid "Output tags (also known as metadata)" msgstr "Marcaje de ieșire (cunoscute și ca „metadata”)" diff --git a/po/ru.po b/po/ru.po index 2300900452..0144f7cbd3 100644 --- a/po/ru.po +++ b/po/ru.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer-0.10.32.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2011-04-26 20:25+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -1128,6 +1128,10 @@ msgstr "Устанавливается состояние %s, запрошенн msgid "Interrupt: Stopping pipeline ...\n" msgstr "Прерывание: Остановка конвейера...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "элемент «%s» не найден" + msgid "Output tags (also known as metadata)" msgstr "Выводить теги (метаданные)" diff --git a/po/rw.po b/po/rw.po index 6200b2fcf5..7178bad144 100644 --- a/po/rw.po +++ b/po/rw.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.8.8\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2005-04-04 10:55-0700\n" "Last-Translator: Steven Michael Murphy \n" "Language-Team: Kinyarwanda \n" @@ -1303,6 +1303,10 @@ msgstr "" msgid "Interrupt: Stopping pipeline ...\n" msgstr "" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "Oya Ikigize:" + #, fuzzy msgid "Output tags (also known as metadata)" msgstr "Nka" diff --git a/po/sk.po b/po/sk.po index 7c266a1fbb..f818a54e51 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.30.3\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-11-08 16:13+0100\n" "Last-Translator: Peter Tuhársky \n" "Language-Team: Slovak \n" @@ -1140,6 +1140,10 @@ msgstr "Nastavujem stav na %s ako požaduje %s...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Prerušenie: Zastavujem rúru ...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "prvok \"%s\" neexistuje" + msgid "Output tags (also known as metadata)" msgstr "Vypísať značky (známe tiež ako metadáta)" diff --git a/po/sl.po b/po/sl.po index 20996f530c..7f1fe7f440 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.29.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-09-18 20:21+0100\n" "Last-Translator: Matej Urbančič \n" "Language-Team: Slovenian \n" @@ -1124,6 +1124,10 @@ msgstr "Nastavljanje stanja na %s, kot to zahteva %s ...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Prekinitev: zaustavljanje predvajanja vsebine cevovoda ... \n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "ni predmeta \"%s\"" + msgid "Output tags (also known as metadata)" msgstr "" diff --git a/po/sq.po b/po/sq.po index 2b35a23414..dbc2ffa750 100644 --- a/po/sq.po +++ b/po/sq.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.8.4\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2004-08-07 23:46+0200\n" "Last-Translator: Laurent Dhima \n" "Language-Team: Albanian \n" @@ -1138,6 +1138,10 @@ msgstr "" msgid "Interrupt: Stopping pipeline ...\n" msgstr "" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "asnjë element \"%s\"" + msgid "Output tags (also known as metadata)" msgstr "Tags e output (njohur gjithashtu si metadata)" diff --git a/po/sr.po b/po/sr.po index 272ed70bed..82810fb59a 100644 --- a/po/sr.po +++ b/po/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.8.8\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2005-01-27 16:58+0100\n" "Last-Translator: Danilo Segan \n" "Language-Team: Serbian \n" @@ -1152,6 +1152,10 @@ msgstr "" msgid "Interrupt: Stopping pipeline ...\n" msgstr "" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "нема елемента „%s“" + msgid "Output tags (also known as metadata)" msgstr "Излазне ознаке (такође познато и као метаподаци)" diff --git a/po/sv.po b/po/sv.po index adbde56217..d27e686961 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.31.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2011-01-09 19:46+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -1135,6 +1135,10 @@ msgstr "Ställer in tillståndet till %s enligt begäran från %s...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Avbrott: Stoppar rörledningen ...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "inget \"%s\"-element" + msgid "Output tags (also known as metadata)" msgstr "Utmatningstaggar (även känt som metadata)" diff --git a/po/tr.po b/po/tr.po index a4c2a40c8f..d973ac9bae 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.8.0\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2004-04-03 03:14+0300\n" "Last-Translator: Baris Cicek \n" "Language-Team: Turkish \n" @@ -1138,6 +1138,10 @@ msgstr "" msgid "Interrupt: Stopping pipeline ...\n" msgstr "" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "\"%s\" öğesi yok" + msgid "Output tags (also known as metadata)" msgstr "Çıktı etiketleri (metadata olarak da bilinir)" diff --git a/po/uk.po b/po/uk.po index 50b36d9c7d..70d9a32b54 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.14\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2007-09-07 11:16+0300\n" "Last-Translator: Maxim V. Dziumanenko \n" "Language-Team: Ukrainian \n" @@ -1131,6 +1131,10 @@ msgstr "" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Переривання: Канал переводиться у стан ПРИЗУПИНЕНО ...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "немає елементу \"%s\"" + msgid "Output tags (also known as metadata)" msgstr "Вивести теги (також відомі як метадані)" diff --git a/po/vi.po b/po/vi.po index d95c7a04cc..6dafb70c78 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.29.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-10-03 19:09+1030\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -1125,6 +1125,10 @@ msgstr "Đang đặt tình trạng thành %s như yêu cầu bởi %s....\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "Ngắt: đang ngừng chạy đường ống ...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "không có yếu tố « %s »" + msgid "Output tags (also known as metadata)" msgstr "Thể xuất (cũng được biết là siêu dữ liệu)" diff --git a/po/zh_CN.po b/po/zh_CN.po index daaf2027bd..92a1d9e41e 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.10.25.2\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2010-02-02 18:58+0800\n" "Last-Translator: Ji ZhengYu \n" "Language-Team: Chinese (simplified) \n" @@ -1096,6 +1096,10 @@ msgstr "%2$s 发起请求时状态设置为 %1$s...\n" msgid "Interrupt: Stopping pipeline ...\n" msgstr "中断: 中止管道 ...\n" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "无组件“%s”" + msgid "Output tags (also known as metadata)" msgstr "输出标识(也可认为是元数据)" diff --git a/po/zh_TW.po b/po/zh_TW.po index 4a83e21214..7bb8fee216 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gstreamer 0.8.8\n" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n" -"POT-Creation-Date: 2011-05-10 08:32+0100\n" +"POT-Creation-Date: 2011-06-04 13:33+0100\n" "PO-Revision-Date: 2005-04-27 14:55+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -1115,6 +1115,10 @@ msgstr "" msgid "Interrupt: Stopping pipeline ...\n" msgstr "" +#, fuzzy, c-format +msgid "Missing element: %s\n" +msgstr "“%s” 元件不存在" + msgid "Output tags (also known as metadata)" msgstr "" From 6d374e54b91c8391bf8f51020881c61558ab3676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 4 Jun 2011 15:42:13 +0100 Subject: [PATCH 3/3] parse: add prototypes for unused functions to avoid compiler warning The warning is never fatal, because we don't use -Werror for the parser helper library build, but the warnings are annoying anyway. --- gst/parse/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gst/parse/Makefile.am b/gst/parse/Makefile.am index 7e834048f2..30abeb3715 100644 --- a/gst/parse/Makefile.am +++ b/gst/parse/Makefile.am @@ -45,6 +45,8 @@ lex._gst_parse_yy.c: parse.l grammar.tab.h echo '#ifdef HAVE_CONFIG_H' > lex._gst_parse_yy_tmp2.c && \ echo '#include ' >> lex._gst_parse_yy_tmp2.c && \ echo '#endif' >> lex._gst_parse_yy_tmp2.c && \ + echo 'static inline int _gst_parse_yyget_column (void * yyscanner);' >> lex._gst_parse_yy_tmp2.c && \ + echo 'static inline void _gst_parse_yyset_column (int column_no , void * yyscanner);' >> lex._gst_parse_yy_tmp2.c && \ cat lex._gst_parse_yy_tmp.c >> lex._gst_parse_yy_tmp2.c && \ rm lex._gst_parse_yy_tmp.c && \ mv lex._gst_parse_yy_tmp2.c lex._gst_parse_yy.c