diff --git a/dist/macdeploy.py b/dist/macdeploy.py index c99570366..410a70de3 100755 --- a/dist/macdeploy.py +++ b/dist/macdeploy.py @@ -64,6 +64,7 @@ GSTREAMER_PLUGINS=[ 'libgstdecodebin2.so', 'libgstequalizer.so', 'libgstosxaudio.so', + 'libgstspectrum.so', 'libgsttypefindfunctions.so', 'libgstudp.so', 'libgstvolume.so', diff --git a/src/engines/gstenginepipeline.cpp b/src/engines/gstenginepipeline.cpp index 6bdf2f5c5..5c00bcaf3 100644 --- a/src/engines/gstenginepipeline.cpp +++ b/src/engines/gstenginepipeline.cpp @@ -291,7 +291,10 @@ GstBusSyncReply GstEnginePipeline::BusCallbackSync(GstBus*, GstMessage* msg, gpo break; case GST_MESSAGE_ELEMENT: - instance->ElementMessageReceived(msg); + if (instance->ElementMessageReceived(msg)) { + gst_message_unref(msg); + return GST_BUS_DROP; + } break; default: @@ -300,7 +303,8 @@ GstBusSyncReply GstEnginePipeline::BusCallbackSync(GstBus*, GstMessage* msg, gpo return GST_BUS_PASS; } -void GstEnginePipeline::ElementMessageReceived(GstMessage* msg) { +// Returns whether or not to drop the message. +bool GstEnginePipeline::ElementMessageReceived(GstMessage* msg) { const GstStructure* structure = gst_message_get_structure(msg); const gchar* name = gst_structure_get_name(structure); @@ -317,13 +321,12 @@ void GstEnginePipeline::ElementMessageReceived(GstMessage* msg) { GstStructure* s = gst_caps_get_structure(caps, 0); gint frequency = 0; gboolean ret = gst_structure_get_int(s, "rate", &frequency); - // The docs say we should unref caps but glib complains if we do. - //gst_object_unref(caps); + gst_caps_unref(caps); gst_object_unref(pad); if (!ret || frequency == 0) { qWarning() << "Failed to get rate"; - return; + return true; } const GValue* magnitudes = gst_structure_get_value(structure, "magnitude"); @@ -335,7 +338,9 @@ void GstEnginePipeline::ElementMessageReceived(GstMessage* msg) { spectrum[i] = (mag - kSpectrumThreshold) / -kSpectrumThreshold; } emit SpectrumAvailable(spectrum); + return true; } + return false; } void GstEnginePipeline::ErrorMessageReceived(GstMessage* msg) { diff --git a/src/engines/gstenginepipeline.h b/src/engines/gstenginepipeline.h index 71cc711c2..f5b186494 100644 --- a/src/engines/gstenginepipeline.h +++ b/src/engines/gstenginepipeline.h @@ -103,7 +103,7 @@ class GstEnginePipeline : public QObject { static bool StopUriDecodeBin(gpointer bin); void TagMessageReceived(GstMessage*); void ErrorMessageReceived(GstMessage*); - void ElementMessageReceived(GstMessage*); + bool ElementMessageReceived(GstMessage*); QString ParseTag(GstTagList* list, const char* tag) const; bool Init(); diff --git a/src/translations/ar.po b/src/translations/ar.po index 4ddcea741..9c1dbcdff 100644 --- a/src/translations/ar.po +++ b/src/translations/ar.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-05-21 01:02+0000\n" "Last-Translator: EL7R \n" "Language-Team: Arabic \n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" "X-Launchpad-Export-Date: 2010-05-22 04:09+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "" msgid "%1 tracks" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -603,7 +603,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -1795,7 +1795,7 @@ msgstr "" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "أضِف %n أغاني\\أغنية" @@ -1815,7 +1815,7 @@ msgstr "انقل الأغاني" msgid "options" msgstr "الخيارات" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "أزِل %n أغاني\\أغنية" diff --git a/src/translations/bg.po b/src/translations/bg.po index b576823cf..fff7a1c4e 100644 --- a/src/translations/bg.po +++ b/src/translations/bg.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-07-24 15:58+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Bulgarian \n" -"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "X-Launchpad-Export-Date: 2010-07-25 04:25+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "" msgid "%1 tracks" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -603,7 +603,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -1795,7 +1795,7 @@ msgstr "" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1815,7 +1815,7 @@ msgstr "" msgid "options" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/ca.po b/src/translations/ca.po index a6123d3b6..662e8f36c 100644 --- a/src/translations/ca.po +++ b/src/translations/ca.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-05 16:05+0000\n" "Last-Translator: txusko \n" "Language-Team: Catalan \n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "X-Launchpad-Export-Date: 2010-08-06 03:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "%1 seleccionades de" msgid "%1 tracks" msgstr "%1 temes" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n han fallat" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n han acabat" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n restants" @@ -89,8 +89,8 @@ msgid "" "

If you surround sections of text that contain a token with curly-braces, " "that section will be hidden if the token is empty.

" msgstr "" -"

Les fitxes de reemplaçament comencen amb %, per exemple: %artist %album " -"%title

\n" +"

Les fitxes de reemplaçament comencen amb %, per exemple: %artist %album %" +"title

\n" "\n" "

Si demarques entre claus una secció de text que contingui una fitxa de " "remplaçament, aquesta secció no es mostrarà si la fitxa de remplaçament es " @@ -615,7 +615,7 @@ msgstr "Editar la informació de la pista..." msgid "Edit..." msgstr "Editar..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editant %n pistes" @@ -1816,7 +1816,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[clickar per editar]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "afegeix %n cançons" @@ -1836,7 +1836,7 @@ msgstr "moure cançons" msgid "options" msgstr "opcions" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "elimina %n cançons" diff --git a/src/translations/cs.po b/src/translations/cs.po index f072d4499..4c1a0d18d 100644 --- a/src/translations/cs.po +++ b/src/translations/cs.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 00:34+0000\n" "Last-Translator: David Sansome \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-08-11 04:06+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Language: cs_CZ\n" @@ -45,15 +45,15 @@ msgstr "" msgid "%1 tracks" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -604,7 +604,7 @@ msgstr "Upravit informaci o skladbách..." msgid "Edit..." msgstr "Upravit..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Úprava %n stop" @@ -1799,7 +1799,7 @@ msgstr "Vynulovat" msgid "[click to edit]" msgstr "[pro úpravy klikněte]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "Přidej %n skladby" @@ -1819,7 +1819,7 @@ msgstr "Přesuň skladby" msgid "options" msgstr "Možnosti" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "Odeber %n skladeb" diff --git a/src/translations/da.po b/src/translations/da.po index 41c0194bd..aee32405d 100644 --- a/src/translations/da.po +++ b/src/translations/da.po @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2010-07-24 15:57+0000\n" "Last-Translator: Kabel \n" "Language-Team: Danish \n" -"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "X-Launchpad-Export-Date: 2010-07-25 04:25+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -45,15 +45,15 @@ msgstr "" msgid "%1 tracks" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -604,7 +604,7 @@ msgstr "Redigér sporinformation..." msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Redigerer %n spor" @@ -1802,7 +1802,7 @@ msgstr "Nul" msgid "[click to edit]" msgstr "[Klik for at redigere]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "tilføj %n sange" @@ -1822,7 +1822,7 @@ msgstr "flyt sange" msgid "options" msgstr "indstillinger" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "fjern %n sange" diff --git a/src/translations/de.po b/src/translations/de.po index 30fe1d219..7208711a1 100644 --- a/src/translations/de.po +++ b/src/translations/de.po @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2010-08-09 23:36+0000\n" "Last-Translator: Markus Fuchs \n" "Language-Team: German \n" -"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de\n" "X-Launchpad-Export-Date: 2010-08-11 04:06+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -45,15 +45,15 @@ msgstr "%1 ausgewählt von" msgid "%1 tracks" msgstr "%1 Stücke" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n fehlgeschlagen" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n konvertiert" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n verbleibend" @@ -614,7 +614,7 @@ msgstr "Metadaten bearbeiten..." msgid "Edit..." msgstr "Bearbeiten..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "%n Stücke bearbeiten" @@ -1830,7 +1830,7 @@ msgstr "Null" msgid "[click to edit]" msgstr "[zum Bearbeiten klicken]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "%n Stücke hinzufügen" @@ -1850,7 +1850,7 @@ msgstr "Stücke verschieben" msgid "options" msgstr "Einstellungen" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "%n Stücke entfernen" diff --git a/src/translations/el.po b/src/translations/el.po index 0bcd81616..094adbdad 100644 --- a/src/translations/el.po +++ b/src/translations/el.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-09 22:33+0000\n" "Last-Translator: firewalker \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-08-11 04:06+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Language: el_GR\n" @@ -46,15 +46,15 @@ msgstr "%1 επιλεγμένα από" msgid "%1 tracks" msgstr "%1 κομμάτια" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n απέτυχε" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n ολοκληρώθηκε" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n απομένει" @@ -616,7 +616,7 @@ msgstr "Τροποποίηση πληροφοριών κομματιού..." msgid "Edit..." msgstr "Επεξεργασία..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Τροποποίηση %n κομματιών" @@ -1835,7 +1835,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[κλικ για τροποποίηση]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "προσθήκη %n τραγουδιών" @@ -1855,7 +1855,7 @@ msgstr "μετακίνηση τραγουδιών" msgid "options" msgstr "επιλογές" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "αφαίρεση %n τραγουδιών" diff --git a/src/translations/en_CA.po b/src/translations/en_CA.po index 7e03276cb..9d1ad2d90 100644 --- a/src/translations/en_CA.po +++ b/src/translations/en_CA.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-06-17 01:37+0000\n" "Last-Translator: David Sansome \n" "Language-Team: English (Canada) \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-06-18 03:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "" msgid "%1 tracks" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n failed" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n finished" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n remaining" @@ -605,7 +605,7 @@ msgstr "Edit track information..." msgid "Edit..." msgstr "Edit..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editing %n tracks" @@ -1800,7 +1800,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[click to edit]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "add %n songs" @@ -1820,7 +1820,7 @@ msgstr "move songs" msgid "options" msgstr "options" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "remove %n songs" diff --git a/src/translations/en_GB.po b/src/translations/en_GB.po index 2e835aeb9..a79793fe8 100644 --- a/src/translations/en_GB.po +++ b/src/translations/en_GB.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-06-17 01:38+0000\n" "Last-Translator: David Sansome \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-06-18 03:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "" msgid "%1 tracks" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -603,7 +603,7 @@ msgstr "Edit track information..." msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editing %n tracks" @@ -1797,7 +1797,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[click to edit]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1817,7 +1817,7 @@ msgstr "" msgid "options" msgstr "options" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/es.po b/src/translations/es.po index 87d0ae5e7..ec1fe5311 100644 --- a/src/translations/es.po +++ b/src/translations/es.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-06 16:08+0000\n" "Last-Translator: Eduardo Durany Fernández \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-08-07 03:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Language: es_ES\n" @@ -45,15 +45,15 @@ msgstr "%1 seleccionadas de" msgid "%1 tracks" msgstr "%1 pistas" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n completado(s)" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n pendiente(s)" @@ -616,7 +616,7 @@ msgstr "Editar información de la pista..." msgid "Edit..." msgstr "Editar..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editando %n pistas" @@ -1834,7 +1834,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[click para editar]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "agregar %n pistas" @@ -1854,7 +1854,7 @@ msgstr "mover pistas" msgid "options" msgstr "opciones" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "remover %n pistas" diff --git a/src/translations/fi.po b/src/translations/fi.po index c7418328b..c38a8977c 100644 --- a/src/translations/fi.po +++ b/src/translations/fi.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-07 10:10+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish \n" -"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" "X-Launchpad-Export-Date: 2010-08-08 04:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "" msgid "%1 tracks" msgstr "%1 kappaletta" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n epäonnistui" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n valmistui" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n jäljellä" @@ -603,7 +603,7 @@ msgstr "Muokkaa kappaleen tietoja..." msgid "Edit..." msgstr "Muokkaa..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -1797,7 +1797,7 @@ msgstr "" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1817,7 +1817,7 @@ msgstr "" msgid "options" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/fr.po b/src/translations/fr.po index 58f76d6a8..78dfee285 100644 --- a/src/translations/fr.po +++ b/src/translations/fr.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 17:45+0000\n" "Last-Translator: Robin Wyss \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-08-11 04:06+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Language: fr_FR\n" @@ -45,15 +45,15 @@ msgstr "%1 sélectionné de" msgid "%1 tracks" msgstr "%1 pistes" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n échoué" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n terminé" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n manquant" @@ -608,7 +608,7 @@ msgstr "Modifier la description de la piste..." msgid "Edit..." msgstr "Éditer..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Éditer %n pistes" @@ -1813,7 +1813,7 @@ msgstr "Zéro" msgid "[click to edit]" msgstr "[cliquer pour modifier]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1833,7 +1833,7 @@ msgstr "déplacer les chansons" msgid "options" msgstr "options" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/gl.po b/src/translations/gl.po index 79a2bb48e..a2a45d024 100644 --- a/src/translations/gl.po +++ b/src/translations/gl.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-04-27 16:34+0000\n" "Last-Translator: andreout \n" "Language-Team: Galician \n" -"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" "X-Launchpad-Export-Date: 2010-04-28 03:53+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "" msgid "%1 tracks" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -603,7 +603,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editando %n faixas" @@ -1797,7 +1797,7 @@ msgstr "" msgid "[click to edit]" msgstr "[clique para editar]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1817,7 +1817,7 @@ msgstr "" msgid "options" msgstr "Opzóns" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/hu.po b/src/translations/hu.po index 64157373b..7cc16acd1 100644 --- a/src/translations/hu.po +++ b/src/translations/hu.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-11 00:04+0000\n" "Last-Translator: ntomka \n" "Language-Team: Hungarian \n" -"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "X-Launchpad-Export-Date: 2010-08-11 04:06+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "%1 kiválasztva" msgid "%1 tracks" msgstr "%1 szám" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n meghiúsult" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n befejezve" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n hátralévő" @@ -612,7 +612,7 @@ msgstr "Száminformáció szerkesztése..." msgid "Edit..." msgstr "Szerkesztés..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "%n szám szerkesztése" @@ -1824,7 +1824,7 @@ msgstr "Nulla" msgid "[click to edit]" msgstr "[kattintson a szerkesztéshez]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "%n szám felvétele" @@ -1844,7 +1844,7 @@ msgstr "számok mozgatása" msgid "options" msgstr "beállítások" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "%n szám eltávolítása" diff --git a/src/translations/it.po b/src/translations/it.po index f2823f6c3..d934f47d0 100644 --- a/src/translations/it.po +++ b/src/translations/it.po @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 05:09+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "X-Launchpad-Export-Date: 2010-08-11 04:07+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -45,15 +45,15 @@ msgstr "%1 selezionate di" msgid "%1 tracks" msgstr "%1 tracce" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n non riusciti" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n completati" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n rimanenti" @@ -619,7 +619,7 @@ msgstr "Modifica informazioni traccia..." msgid "Edit..." msgstr "Modifica..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Modifica di %n tracce" @@ -1843,7 +1843,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[clic per modificare]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "aggiungi %n brani" @@ -1863,7 +1863,7 @@ msgstr "sposta brani" msgid "options" msgstr "opzioni" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "rimuovi %n brani" diff --git a/src/translations/kk.po b/src/translations/kk.po index a4aa76658..24014b1e8 100644 --- a/src/translations/kk.po +++ b/src/translations/kk.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-04-27 16:33+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Kazakh \n" -"Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: kk\n" "X-Launchpad-Export-Date: 2010-04-28 03:53+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "" msgid "%1 tracks" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -603,7 +603,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -1797,7 +1797,7 @@ msgstr "Нөл" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1817,7 +1817,7 @@ msgstr "" msgid "options" msgstr "опциялар" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/lt.po b/src/translations/lt.po index 0f93ed4d1..62fc4ed61 100644 --- a/src/translations/lt.po +++ b/src/translations/lt.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-07-24 16:03+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Lithuanian \n" -"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" "X-Launchpad-Export-Date: 2010-07-25 04:26+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "%1 pažymėta iš" msgid "%1 tracks" msgstr "%1 takeliai" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -603,7 +603,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -1795,7 +1795,7 @@ msgstr "" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1815,7 +1815,7 @@ msgstr "" msgid "options" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/nb.po b/src/translations/nb.po index 855d65a72..7e3a1c4da 100644 --- a/src/translations/nb.po +++ b/src/translations/nb.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-04 18:45+0000\n" "Last-Translator: Simen Heggestøyl \n" "Language-Team: Norwegian Bokmal \n" -"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" "X-Launchpad-Export-Date: 2010-08-05 03:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "" msgid "%1 tracks" msgstr "%1 spor" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n gjenstående" @@ -603,7 +603,7 @@ msgstr "Rediger informasjon om sporet..." msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Endrer %n spor" @@ -1799,7 +1799,7 @@ msgstr "Null" msgid "[click to edit]" msgstr "[klikk for å endre]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" msgid "options" msgstr "innstillinger" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/nl.po b/src/translations/nl.po index 12980d7b9..6b57a78a5 100644 --- a/src/translations/nl.po +++ b/src/translations/nl.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-08 15:32+0000\n" "Last-Translator: Ward \n" "Language-Team: Dutch \n" -"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" "X-Launchpad-Export-Date: 2010-08-09 03:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "%1 geselecteerd van" msgid "%1 tracks" msgstr "%1 tracks" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n mislukt" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n voltooid" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n te gaan" @@ -611,7 +611,7 @@ msgstr "Trackinformatie bewerken..." msgid "Edit..." msgstr "Bewerken..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "%n tracks bewerken" @@ -1831,7 +1831,7 @@ msgstr "Nul" msgid "[click to edit]" msgstr "[klik om te bewerken:]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "%n nummers toevoegen" @@ -1851,7 +1851,7 @@ msgstr "nummers verplaatsen" msgid "options" msgstr "opties" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "%n nummers verwijderen" diff --git a/src/translations/oc.po b/src/translations/oc.po index 550f8b4f8..7707fc409 100644 --- a/src/translations/oc.po +++ b/src/translations/oc.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-05-21 01:01+0000\n" "Last-Translator: Cédric VALMARY (Tot en òc) \n" "Language-Team: Occitan (post 1500) \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-05-22 04:09+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "" msgid "%1 tracks" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -603,7 +603,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -1795,7 +1795,7 @@ msgstr "Zèro" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1815,7 +1815,7 @@ msgstr "" msgid "options" msgstr "opcions" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/pl.po b/src/translations/pl.po index e20429d91..dc87e1d7c 100644 --- a/src/translations/pl.po +++ b/src/translations/pl.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-07-27 10:29+0000\n" "Last-Translator: Hunab.cu \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-07-28 04:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Language: pl_PL\n" @@ -45,15 +45,15 @@ msgstr "%1 zaznaczonych z" msgid "%1 tracks" msgstr "%1 ścieżek" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n zawiodło" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n zakończone" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "pozostało %n" @@ -609,7 +609,7 @@ msgstr "Edytuj informacje o utworze..." msgid "Edit..." msgstr "Edytuj..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Edytowanie %n ścieżek" @@ -1808,7 +1808,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[kliknij aby edytować]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "dodaj %n utworów" @@ -1828,7 +1828,7 @@ msgstr "przenieś utwory" msgid "options" msgstr "opcje" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "usuń %n utworów" diff --git a/src/translations/pt.po b/src/translations/pt.po index 06be29afb..7a465451c 100644 --- a/src/translations/pt.po +++ b/src/translations/pt.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 11:43+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" -"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "X-Launchpad-Export-Date: 2010-08-11 04:07+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "seleccionada(s) %1 de" msgid "%1 tracks" msgstr "%1 faixas" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n falha(s)" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n concluída(s)" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n restante(s)" @@ -613,7 +613,7 @@ msgstr "Editar a informação da faixa..." msgid "Edit..." msgstr "Editar..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editando %n faixas" @@ -1825,7 +1825,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[clique para editar]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "adicionar %n canções" @@ -1845,7 +1845,7 @@ msgstr "mover canções" msgid "options" msgstr "opções" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "remover %n canções" diff --git a/src/translations/pt_BR.po b/src/translations/pt_BR.po index 7d42742c4..a0a21acdc 100644 --- a/src/translations/pt_BR.po +++ b/src/translations/pt_BR.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-06-26 18:01+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Brazilian Portuguese \n" -"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "X-Launchpad-Export-Date: 2010-06-27 03:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "%1 selecionado(s) de" msgid "%1 tracks" msgstr "%1 faixas" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n falhou" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n fizalizado" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n faltando" @@ -608,7 +608,7 @@ msgstr "Editar informações da faixa..." msgid "Edit..." msgstr "Editar..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editando %n faixas" @@ -1815,7 +1815,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[clique para editar]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "Adicionar %n músicas" @@ -1835,7 +1835,7 @@ msgstr "mover músicas" msgid "options" msgstr "opções" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "Remover %n músicas" diff --git a/src/translations/ro.po b/src/translations/ro.po index f393c48dc..eff2dfe8c 100644 --- a/src/translations/ro.po +++ b/src/translations/ro.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-05-03 21:09+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Romanian \n" -"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" "X-Launchpad-Export-Date: 2010-05-04 03:52+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "" msgid "%1 tracks" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -603,7 +603,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -1796,7 +1796,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1816,7 +1816,7 @@ msgstr "" msgid "options" msgstr "opțiuni" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/ru.po b/src/translations/ru.po index b0e94719a..aea660578 100644 --- a/src/translations/ru.po +++ b/src/translations/ru.po @@ -10,10 +10,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 06:34+0000\n" "Last-Translator: Malody \n" "Language-Team: Russian \n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" "X-Launchpad-Export-Date: 2010-08-11 04:07+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -43,15 +43,15 @@ msgstr "%1 выбрано из" msgid "%1 tracks" msgstr "%1 композиций" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n с ошибкой" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n завершено" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n осталось" @@ -610,7 +610,7 @@ msgstr "Изменить информацию о композиции..." msgid "Edit..." msgstr "Изменить..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Редактирую %n треков" @@ -1821,7 +1821,7 @@ msgstr "По-умолчанию" msgid "[click to edit]" msgstr "[щелкните, чтобы изменить]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "добавить %n композиций" @@ -1841,7 +1841,7 @@ msgstr "переместить композиции" msgid "options" msgstr "настройки" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "удалить %n композиций" diff --git a/src/translations/sk.po b/src/translations/sk.po index 5568c452d..2fb957e29 100644 --- a/src/translations/sk.po +++ b/src/translations/sk.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-09 22:11+0000\n" "Last-Translator: DAG Software \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-08-11 04:07+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Language: sk_SK\n" @@ -45,15 +45,15 @@ msgstr "%1 vybratých z" msgid "%1 tracks" msgstr "%1 skladieb" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n zlyhalo" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n dokončených" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n zostávajúcich" @@ -612,7 +612,7 @@ msgstr "Upravť informácie o skladbe..." msgid "Edit..." msgstr "Upraviť..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Upravovanie %n skladieb" @@ -1822,7 +1822,7 @@ msgstr "Vynulovať" msgid "[click to edit]" msgstr "[kliknite pre úpravu]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "pridať %n piesní" @@ -1842,7 +1842,7 @@ msgstr "presunúť piesne" msgid "options" msgstr "možnosti" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "odstrániť %n piesní" diff --git a/src/translations/sl.po b/src/translations/sl.po index c64c77cb0..66066e612 100644 --- a/src/translations/sl.po +++ b/src/translations/sl.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-01 07:33+0000\n" "Last-Translator: R33D3M33R \n" "Language-Team: Slovenian \n" -"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" "X-Launchpad-Export-Date: 2010-08-02 04:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "izbran %1 od" msgid "%1 tracks" msgstr "%1 skladb" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n spodletelih" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n končanih" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n preostaja" @@ -611,7 +611,7 @@ msgstr "Uredi informacije o skladbi..." msgid "Edit..." msgstr "Uredi..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Urejanje %n skladb" @@ -1822,7 +1822,7 @@ msgstr "Brez" msgid "[click to edit]" msgstr "[kliknite za urejanje]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "dodaj %n skladb" @@ -1842,7 +1842,7 @@ msgstr "premakni skladbe" msgid "options" msgstr "možnosti" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "odstrani %n skladb" diff --git a/src/translations/sr.po b/src/translations/sr.po index eb8b601dc..e246a1c73 100644 --- a/src/translations/sr.po +++ b/src/translations/sr.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-07-24 16:03+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Serbian \n" -"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" "X-Launchpad-Export-Date: 2010-07-25 04:26+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "" msgid "%1 tracks" msgstr "%1 нумера" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n завршено" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n преостало" @@ -605,7 +605,7 @@ msgstr "Уреди податке о нумери..." msgid "Edit..." msgstr "Уреди..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Уређивање %n нумера" @@ -1802,7 +1802,7 @@ msgstr "Нулто" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "додај %n песама" @@ -1822,7 +1822,7 @@ msgstr "" msgid "options" msgstr "Опције" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "remove %n песама" diff --git a/src/translations/sv.po b/src/translations/sv.po index 6d4af7ba0..bcf2688c8 100644 --- a/src/translations/sv.po +++ b/src/translations/sv.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 16:24+0000\n" "Last-Translator: David Bengtsson \n" "Language-Team: Swedish \n" -"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" "X-Launchpad-Export-Date: 2010-08-11 04:07+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "%1 markerade av" msgid "%1 tracks" msgstr "%1 spår" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n misslyckades" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n färdig" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n återstår" @@ -607,7 +607,7 @@ msgstr "Redigera spårinformation..." msgid "Edit..." msgstr "Redigera..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Redigerar %n spår" @@ -1817,7 +1817,7 @@ msgstr "Noll" msgid "[click to edit]" msgstr "[klicka för att redigera]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "Lägg till %n songer" @@ -1837,7 +1837,7 @@ msgstr "Flytta songer" msgid "options" msgstr "alternativ" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "Ta bort %n songer" diff --git a/src/translations/tr.po b/src/translations/tr.po index f0d7e01b9..6db2d67a3 100644 --- a/src/translations/tr.po +++ b/src/translations/tr.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-07-25 01:29+0000\n" "Last-Translator: ironic \n" "Language-Team: Turkish \n" -"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" "X-Launchpad-Export-Date: 2010-07-26 04:29+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "" msgid "%1 tracks" msgstr "%1 parça" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n başarısız" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n tamamlandı" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n kalan" @@ -603,7 +603,7 @@ msgstr "Parça bilgisini düzenle..." msgid "Edit..." msgstr "Düzenle..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -1801,7 +1801,7 @@ msgstr "" msgid "[click to edit]" msgstr "[düzenlemek için tıklayın]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "%n şakıyı ekle" @@ -1821,7 +1821,7 @@ msgstr "Parçaları taşı" msgid "options" msgstr "seçenekler" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "%n şakıyı çıkart" diff --git a/src/translations/translations.pot b/src/translations/translations.pot index d775bb190..986db51ca 100644 --- a/src/translations/translations.pot +++ b/src/translations/translations.pot @@ -34,15 +34,15 @@ msgstr "" msgid "%1 tracks" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -593,7 +593,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -1785,7 +1785,7 @@ msgstr "" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1805,7 +1805,7 @@ msgstr "" msgid "options" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/uk.po b/src/translations/uk.po index bc4a6d9c4..bae61b292 100644 --- a/src/translations/uk.po +++ b/src/translations/uk.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-03 09:12+0000\n" "Last-Translator: Sergiy Gavrylov \n" "Language-Team: Ukrainian \n" -"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" "X-Launchpad-Export-Date: 2010-08-04 04:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "вибрано з %1" msgid "%1 tracks" msgstr "%1 доріжок" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n з помилкою" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n завершено" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n залишилось" @@ -611,7 +611,7 @@ msgstr "Редагувати дані про доріжку..." msgid "Edit..." msgstr "Змінити..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Редагування %n доріжок" @@ -1820,7 +1820,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[клацніть, щоб змінити]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "додати %n композицій" @@ -1840,7 +1840,7 @@ msgstr "перемістити композиції" msgid "options" msgstr "параметри" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "вилучити %n композицій" diff --git a/src/translations/zh_CN.po b/src/translations/zh_CN.po index c0eab7bf1..d7fb1b1b3 100644 --- a/src/translations/zh_CN.po +++ b/src/translations/zh_CN.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-06-07 01:43+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Chinese (Simplified) \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-06-08 03:51+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "" msgid "%1 tracks" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -603,7 +603,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -1795,7 +1795,7 @@ msgstr "" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1815,7 +1815,7 @@ msgstr "" msgid "options" msgstr "选项" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/zh_TW.po b/src/translations/zh_TW.po index 2dc43e388..1364a7da2 100644 --- a/src/translations/zh_TW.po +++ b/src/translations/zh_TW.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 00:39+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Chinese (Traditional) \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-08-11 04:07+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -44,15 +44,15 @@ msgstr "%1 選定" msgid "%1 tracks" msgstr "%1 歌曲" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n 失敗的" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n 完成的" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n 剩餘的" @@ -607,7 +607,7 @@ msgstr "編輯歌曲資訊..." msgid "Edit..." msgstr "編輯..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "編輯 %n 歌曲" @@ -1802,7 +1802,7 @@ msgstr "" msgid "[click to edit]" msgstr "[點擊以編輯]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "加入 %n 歌" @@ -1822,7 +1822,7 @@ msgstr "移動歌曲" msgid "options" msgstr "選項" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "移除 %n 歌"