fixing skipping songs for library songs

another "silent" GST error type
David's POT
This commit is contained in:
Paweł Bara 2011-03-13 22:57:49 +00:00
parent f700df2f54
commit 8ed6eca57e
52 changed files with 457 additions and 320 deletions

View File

@ -431,11 +431,13 @@ bool GstEngine::Load(const QUrl& url, Engine::TrackChangeFlags change,
Engine::Base::Load(url, change, beginning_nanosec, end_nanosec);
// TODO: see if commenting this out will lead to regression on windows
// Clementine just crashes when asked to load a file that doesn't exist on
// Windows, so check for that here. This is definitely the wrong place for
// this "fix"...
if (url.scheme() == "file" && !QFile::exists(url.toLocalFile()))
return false;
//if (url.scheme() == "file" && !QFile::exists(url.toLocalFile()))
// return false;
QUrl gst_url = FixupUrl(url);
@ -688,7 +690,8 @@ void GstEngine::HandlePipelineError(const QString& message, int domain, int erro
// - come up with a less intrusive error box (not a dialog but a notification
// popup of some kind) and then report all errors
if(!(domain == GST_RESOURCE_ERROR && error_code == GST_RESOURCE_ERROR_NOT_FOUND) &&
!(domain == GST_STREAM_ERROR && error_code == GST_STREAM_ERROR_TYPE_NOT_FOUND)) {
!(domain == GST_STREAM_ERROR && error_code == GST_STREAM_ERROR_TYPE_NOT_FOUND) &&
!(domain == GST_RESOURCE_ERROR && error_code == GST_RESOURCE_ERROR_OPEN_READ)) {
emit Error(message);
}
}

View File

@ -308,6 +308,9 @@ GstBusSyncReply GstEnginePipeline::BusCallbackSync(GstBus*, GstMessage* msg, gpo
break;
case GST_MESSAGE_ERROR:
// we're trying to shutdown the pipeline here to avoid consequent
// error notifications: we're interested in the first one only
gst_element_set_state(instance->pipeline_, GST_STATE_NULL);
QtConcurrent::run(instance, &GstEnginePipeline::ErrorMessageReceived, msg);
break;
@ -360,17 +363,7 @@ void GstEnginePipeline::ErrorMessageReceived(GstMessage* msg) {
}
qDebug() << debugstr;
// wait until the change of state is complete and if something went
// wrong signal the error; this makes skipping songs work even for
// ASYNC changes of state
// we're using a higher than usual timeout here to avoid race
// conditions; those are visible when we try to play another song
// due to skipping a broken one while the broken song's state is
// still being processed in GStreamer
if(state(kGstStateTimeoutNanosecs * 5) == GST_STATE_NULL) {
emit Error(message, domain, code);
}
emit Error(message, domain, code);
}
void GstEnginePipeline::TagMessageReceived(GstMessage* msg) {
@ -562,12 +555,8 @@ qint64 GstEnginePipeline::length() const {
}
GstState GstEnginePipeline::state() const {
return state(kGstStateTimeoutNanosecs);
}
GstState GstEnginePipeline::state(int delay) const {
GstState s, sp;
if (gst_element_get_state(pipeline_, &s, &sp, delay) ==
if (gst_element_get_state(pipeline_, &s, &sp, kGstStateTimeoutNanosecs) ==
GST_STATE_CHANGE_FAILURE)
return GST_STATE_NULL;

View File

@ -129,10 +129,6 @@ class GstEnginePipeline : public QObject {
void TransitionToNext();
// Returns this pipeline's state. May return GST_STATE_NULL if the state check
// timed out. The timeout value used is the given one.
GstState state(int timeout) const;
private slots:
void FaderTimelineFinished();

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-12-22 17:44+0000\n"
"Last-Translator: Ali AlNoaimi <the-ghost@live.com>\n"
"Language-Team: Arabic <ar@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:26+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: ar\n"
msgid " ms"
msgstr ""
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr ""
@ -174,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr ""
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr ""
@ -2729,7 +2732,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "أضِف %n أغاني\\أغنية"
@ -2788,7 +2791,7 @@ msgstr ""
msgid "options"
msgstr "الخيارات"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "أزِل %n أغاني\\أغنية"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-12-05 20:18+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Belarusian <be@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:26+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: be\n"
msgid " ms"
msgstr " мс"
@ -82,15 +82,15 @@ msgstr "%1 кампазіцый"
msgid "%1: Wiimotedev module"
msgstr "%1: модуль Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n з памылкай"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n завершана"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n засталося"
@ -177,6 +177,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr ""
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Пра %1"
@ -2743,7 +2746,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2802,7 +2805,7 @@ msgstr ""
msgid "options"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-12 21:07+0000\n"
"Last-Translator: George Karavasilev <kokoto_java@yahoo.com>\n"
"Language-Team: Bulgarian <bg@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-13 05:09+0000\n"
"X-Generator: Launchpad (build 12559)\n"
"Language: bg\n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 песни"
msgid "%1: Wiimotedev module"
msgstr "%1:Wiimotedev модул"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n неуспешно"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n завършено"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n оставащо"
@ -181,6 +181,9 @@ msgstr "А-Я"
msgid "AIFF"
msgstr "АИФФ"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Относно %1"
@ -2807,7 +2810,7 @@ msgstr "Я-А"
msgid "Zero"
msgstr "Нула"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "добавете %n песни"
@ -2866,7 +2869,7 @@ msgstr "вкл."
msgid "options"
msgstr "опции"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "премахване на %n песни"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-06 17:45+0000\n"
"Last-Translator: Gwenn M <Unknown>\n"
"Language-Team: Breton <br@li.org>\n"
"Language: br\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:26+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: br\n"
msgid " ms"
msgstr " me"
@ -82,15 +82,15 @@ msgstr "%1 roudenn"
msgid "%1: Wiimotedev module"
msgstr "%1 : enlugellad wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n c'hwitet"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n echuet"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n a chom"
@ -180,6 +180,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "A-zivout %1"
@ -2753,7 +2756,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2812,7 +2815,7 @@ msgstr ""
msgid "options"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 15:43+0000\n"
"Last-Translator: David Planella <david.planella@ubuntu.com>\n"
"Language-Team: Catalan <ca@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:26+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: ca\n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 temes"
msgid "%1: Wiimotedev module"
msgstr "%1 mòdul Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n han fallat"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n han acabat"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n restants"
@ -158,8 +158,8 @@ msgid ""
"<p>If you surround sections of text that contain a token with curly-braces, "
"that section will be hidden if the token is empty.</p>"
msgstr ""
"<p>Les fitxes de reemplaçament comencen amb %, per exemple: %artist %album %"
"title </p>\n"
"<p>Les fitxes de reemplaçament comencen amb %, per exemple: %artist %album "
"%title </p>\n"
"\n"
"<p>Si demarqueu 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 "
@ -184,6 +184,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Sobre %1"
@ -2782,7 +2785,7 @@ msgstr ""
msgid "Zero"
msgstr "Zero"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "afegeix %n cançons"
@ -2841,7 +2844,7 @@ msgstr ""
msgid "options"
msgstr "opcions"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "elimina %n cançons"

View File

@ -12,12 +12,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-09 07:07+0000\n"
"Last-Translator: fri <pavelfric@seznam.cz>\n"
"Language-Team: Czech <kde-i18n-doc@kde.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-10 05:30+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: cs\n"
"X-Language: cs_CZ\n"
msgid " ms"
@ -84,15 +84,15 @@ msgstr "%1 skladeb"
msgid "%1: Wiimotedev module"
msgstr "%1: modul Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "nepodařilo se %n"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "dokončeno %n"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "zůstávají %n"
@ -185,6 +185,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "O %1"
@ -2798,7 +2801,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Vynulovat"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "přidat %n písniček"
@ -2857,7 +2860,7 @@ msgstr "Na"
msgid "options"
msgstr "Volby"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "odstranit %n písniček"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-08-26 13:46+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Welsh <cy@li.org>\n"
"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:29+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: cy\n"
msgid " ms"
msgstr ""
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr ""
@ -174,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr ""
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr ""
@ -2729,7 +2732,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2788,7 +2791,7 @@ msgstr ""
msgid "options"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -12,12 +12,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:39+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Danish <kde-i18n-doc@kde.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:26+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: da\n"
msgid " ms"
msgstr " ms"
@ -83,15 +83,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr ""
@ -175,6 +175,9 @@ msgstr ""
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Om %1"
@ -2734,7 +2737,7 @@ msgstr ""
msgid "Zero"
msgstr "Nul"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "tilføj %n sange"
@ -2793,7 +2796,7 @@ msgstr ""
msgid "options"
msgstr "indstillinger"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "fjern %n sange"

View File

@ -12,12 +12,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-07 19:31+0000\n"
"Last-Translator: David Dusanic <ivanovnegro@googlemail.com>\n"
"Language-Team: German <de@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-08 05:23+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: de\n"
msgid " ms"
msgstr " ms"
@ -83,15 +83,15 @@ msgstr "%1 Stücke"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev-Modul"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n fehlgeschlagen"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n konvertiert"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n verbleibend"
@ -184,6 +184,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Über %1"
@ -2809,7 +2812,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Null"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "%n Stücke hinzufügen"
@ -2868,7 +2871,7 @@ msgstr "auf"
msgid "options"
msgstr "Einstellungen"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "%n Stücke entfernen"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-10 21:43+0000\n"
"Last-Translator: firewalker <Unknown>\n"
"Language-Team: <en@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-11 05:05+0000\n"
"X-Generator: Launchpad (build 12559)\n"
"Language: \n"
"X-Language: el_GR\n"
"X-Source-Language: en\n"
@ -84,15 +84,15 @@ msgstr "%1 κομμάτια"
msgid "%1: Wiimotedev module"
msgstr "%1: Άρθρωμα Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n απέτυχε"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n ολοκληρώθηκε"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n απομένει"
@ -187,6 +187,9 @@ msgstr "Α-Ω"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Περί %1"
@ -2831,7 +2834,7 @@ msgstr "Ω-Α"
msgid "Zero"
msgstr "Zero"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "προσθήκη %n τραγουδιών"
@ -2890,7 +2893,7 @@ msgstr "σε"
msgid "options"
msgstr "επιλογές"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "αφαίρεση %n τραγουδιών"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-12-25 04:49+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:26+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: \n"
msgid " ms"
msgstr ""
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr ""
@ -174,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr ""
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr ""
@ -2729,7 +2732,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2788,7 +2791,7 @@ msgstr ""
msgid "options"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:06+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: English (Canada) <en_CA@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:29+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: \n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n failed"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n finished"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n remaining"
@ -174,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "About %1"
@ -2733,7 +2736,7 @@ msgstr ""
msgid "Zero"
msgstr "Zero"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "add %n songs"
@ -2792,7 +2795,7 @@ msgstr ""
msgid "options"
msgstr "options"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "remove %n songs"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:29+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:29+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: \n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr ""
@ -174,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "About %1"
@ -2730,7 +2733,7 @@ msgstr ""
msgid "Zero"
msgstr "Zero"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2789,7 +2792,7 @@ msgstr ""
msgid "options"
msgstr "options"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-11-03 02:08+0000\n"
"Last-Translator: darkweasel <darkweasel@euirc.eu>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:26+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: eo\n"
msgid " ms"
msgstr ""
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n malsukcesis"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n finiĝis"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n restas"
@ -174,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr ""
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Pri %1"
@ -2729,7 +2732,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2788,7 +2791,7 @@ msgstr ""
msgid "options"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-12 03:44+0000\n"
"Last-Translator: Fitoschido <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-13 05:09+0000\n"
"X-Generator: Launchpad (build 12559)\n"
"Language: \n"
"X-Language: es_ES\n"
msgid " ms"
@ -83,15 +83,15 @@ msgstr "%1 pistas"
msgid "%1: Wiimotedev module"
msgstr "%1: Módulo Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n falló"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n completado(s)"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n pendiente(s)"
@ -187,6 +187,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Acerca de %1"
@ -640,8 +643,8 @@ msgid ""
"Could not create the GStreamer element \"%1\" - make sure you have all the "
"required GStreamer plugins installed"
msgstr ""
"No se pudo crear el elemento «%1» de GStreamer. Asegúrese de tener instalados "
"todos los complementos necesarios de GStreamer."
"No se pudo crear el elemento «%1» de GStreamer. Asegúrese de tener "
"instalados todos los complementos necesarios de GStreamer."
#, qt-format
msgid ""
@ -2822,7 +2825,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "añadir %n pistas"
@ -2881,7 +2884,7 @@ msgstr "en"
msgid "options"
msgstr "opciones"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "remover %n pistas"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-02 09:32+0000\n"
"Last-Translator: lyyser <Unknown>\n"
"Language-Team: Estonian <et@li.org>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:26+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: et\n"
msgid " ms"
msgstr " msek"
@ -82,15 +82,15 @@ msgstr "%1 pala"
msgid "%1: Wiimotedev module"
msgstr "%1: moodul Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n ebaõnnestus"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n lõpetatud"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "jäänud %n"
@ -174,6 +174,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "%1 info"
@ -2730,7 +2733,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Null"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "lisa %n laulu"
@ -2789,7 +2792,7 @@ msgstr ""
msgid "options"
msgstr "valikud"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-12-05 20:21+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Basque <eu@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:26+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: eu\n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr ""
@ -174,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr ""
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr ""
@ -2729,7 +2732,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2788,7 +2791,7 @@ msgstr ""
msgid "options"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-08 16:22+0000\n"
"Last-Translator: Jiri Grönroos <Unknown>\n"
"Language-Team: Finnish <fi@li.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-09 05:17+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: fi\n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 kappaletta"
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n epäonnistui"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n valmistui"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n jäljellä"
@ -174,6 +174,9 @@ msgstr "A-Ö"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Tietoja - %1"
@ -2754,7 +2757,7 @@ msgstr "Ö-A"
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "lisää %n kappaletta"
@ -2813,7 +2816,7 @@ msgstr ""
msgid "options"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "poista %n kappaletta"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-08 10:01+0000\n"
"Last-Translator: Arno <arnaud.bienner@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-09 05:17+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: \n"
"X-Language: fr_FR\n"
msgid " ms"
@ -83,15 +83,15 @@ msgstr "%1 pistes"
msgid "%1: Wiimotedev module"
msgstr "%1 : Module wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n échoué"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n terminé"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n manquant"
@ -186,6 +186,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "À propos de %1"
@ -2831,7 +2834,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zéro"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "ajouter %n morceaux"
@ -2890,7 +2893,7 @@ msgstr "sur"
msgid "options"
msgstr "options"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "enlever %n morceaux"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-12-22 18:04+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Galician <gl@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:27+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: gl\n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 pistas"
msgid "%1: Wiimotedev module"
msgstr "%1: Módulo Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n fallou"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n completado(s)"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n pendente"
@ -158,8 +158,8 @@ msgid ""
"<p>If you surround sections of text that contain a token with curly-braces, "
"that section will be hidden if the token is empty.</p>"
msgstr ""
"<p>As fichas de substitución comezan con %, por exemplo: %artist %album %"
"title </p>\n"
"<p>As fichas de substitución comezan con %, por exemplo: %artist %album "
"%title </p>\n"
"<p>Se rodea seccións de texto que conteñen unha ficha de substitución, esa "
"sección non se amosará se a ficha de substitución estará baleira.</p>"
@ -178,6 +178,9 @@ msgstr ""
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Acerca do %1"
@ -2738,7 +2741,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2797,7 +2800,7 @@ msgstr ""
msgid "options"
msgstr "Opzóns"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 15:55+0000\n"
"Last-Translator: Ofir Klinger <klinger.ofir@gmail.com>\n"
"Language-Team: Hebrew <he@li.org>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:27+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: he\n"
msgid " ms"
msgstr " מילי־שניות"
@ -82,15 +82,15 @@ msgstr "%1 רצועות"
msgid "%1: Wiimotedev module"
msgstr "%1: המודול Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n נכשל"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n הסתיים"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n נותר"
@ -180,6 +180,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "בערך %1"
@ -2766,7 +2769,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "אפס"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "הוסף %n שירים"
@ -2825,7 +2828,7 @@ msgstr "ב־"
msgid "options"
msgstr "אפשרויות"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "הסרת %n שירים"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-11-22 19:42+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Hindi <hi@li.org>\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:27+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: hi\n"
msgid " ms"
msgstr ""
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr ""
@ -174,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr ""
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr ""
@ -2729,7 +2732,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2788,7 +2791,7 @@ msgstr ""
msgid "options"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,13 +11,13 @@ msgstr ""
"PO-Revision-Date: 2011-03-04 08:54+0000\n"
"Last-Translator: gogo <trebelnik2@gmail.com>\n"
"Language-Team: Croatian <hr@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:28+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"X-Poedit-Country: CROATIA\n"
"Language: hr\n"
"X-Poedit-Language: Croatian\n"
msgid " ms"
@ -84,15 +84,15 @@ msgstr "%1 pjesme"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev module"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n nije uspjelo"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n završeno"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n preostalo"
@ -184,6 +184,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "O %1"
@ -2798,7 +2801,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Nula"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "dodajte %n pjesama"
@ -2857,7 +2860,7 @@ msgstr "na"
msgid "options"
msgstr "opcije"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "premjesti %n pjesama"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-06 21:47+0000\n"
"Last-Translator: ntomka <Unknown>\n"
"Language-Team: Hungarian <hu@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:27+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: hu\n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 szám"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev modul"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n meghiúsult"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n befejezve"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n hátralévő"
@ -182,6 +182,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "A(z) %1 névjegye"
@ -2803,7 +2806,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Nulla"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "%n szám felvétele"
@ -2862,7 +2865,7 @@ msgstr "ezen"
msgid "options"
msgstr "beállítások"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "%n szám eltávolítása"

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2011-03-10 13:54+0000\n"
"Last-Translator: Helgi Páll Jónsson <Unknown>\n"
"Language-Team: Icelandic <is@li.org>\n"
"Language: is\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -81,15 +82,15 @@ msgstr "%1 lög"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimodedev eining"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n misheppnaðist"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n lokið"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n eftir"
@ -173,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr ""
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr ""
@ -2728,7 +2732,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2787,7 +2791,7 @@ msgstr ""
msgid "options"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -12,12 +12,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-09 00:41+0000\n"
"Last-Translator: Vincenzo Reale <smart2128@baslug.org>\n"
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-10 05:30+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: it\n"
msgid " ms"
msgstr " ms"
@ -83,15 +83,15 @@ msgstr "%1 tracce"
msgid "%1: Wiimotedev module"
msgstr "%1: modulo Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n non riusciti"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n completati"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n rimanenti"
@ -184,6 +184,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Informazioni su %1"
@ -2821,7 +2824,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "aggiungi %n brani"
@ -2880,7 +2883,7 @@ msgstr "il"
msgid "options"
msgstr "opzioni"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "rimuovi %n brani"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 15:49+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:27+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: \n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 個のトラック"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev モジュール"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n 曲失敗しました"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n が完了しました"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n 曲残っています"
@ -180,6 +180,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "%1 のバージョン情報"
@ -2780,7 +2783,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "%n 曲追加"
@ -2839,7 +2842,7 @@ msgstr "on"
msgid "options"
msgstr "オプション"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "%n 曲削除"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-12-22 18:08+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Kazakh <kk@li.org>\n"
"Language: kk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:27+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: kk\n"
msgid " ms"
msgstr " мсек"
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr ""
@ -174,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr ""
@ -2729,7 +2732,7 @@ msgstr ""
msgid "Zero"
msgstr "Нөл"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2788,7 +2791,7 @@ msgstr ""
msgid "options"
msgstr "опциялар"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,13 +11,13 @@ msgstr ""
"PO-Revision-Date: 2011-03-06 15:16+0000\n"
"Last-Translator: Liudas Ališauskas <liudas.alisauskas@gmail.com>\n"
"Language-Team: Lithuanian <liudas@akmc.lt>\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:28+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"X-Poedit-Country: LITHUANIA\n"
"Language: lt\n"
"X-Poedit-Language: Lithuanian\n"
"X-Poedit-SourceCharset: utf-8\n"
@ -85,15 +85,15 @@ msgstr "%1 takeliai"
msgid "%1: Wiimotedev module"
msgstr "%1: Wii pulto modulis"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n nepavyko"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n baigta"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n pervardinama"
@ -184,6 +184,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF išpynimo metodas"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Apie %1"
@ -2793,7 +2796,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Nulis"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "pridėti %n dainų"
@ -2852,7 +2855,7 @@ msgstr "iš"
msgid "options"
msgstr "parinktys"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "pašalinti %n dainas"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-01-10 15:29+0000\n"
"Last-Translator: uGGA <Unknown>\n"
"Language-Team: uGGa\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:27+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: lv\n"
msgid " ms"
msgstr ""
@ -82,15 +82,15 @@ msgstr "%1 dziesmas"
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr ""
@ -174,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Par %1"
@ -2729,7 +2732,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2788,7 +2791,7 @@ msgstr ""
msgid "options"
msgstr "opcijas"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:31+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Norwegian Bokmal <nb@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:28+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: nb\n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 spor"
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n ferdige"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n gjenstående"
@ -177,6 +177,9 @@ msgstr ""
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Om %1"
@ -2742,7 +2745,7 @@ msgstr ""
msgid "Zero"
msgstr "Null"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2801,7 +2804,7 @@ msgstr ""
msgid "options"
msgstr "innstillinger"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-09 22:26+0000\n"
"Last-Translator: Cugel <hulshof@gmail.com>\n"
"Language-Team: Dutch <nl@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-10 05:30+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: nl\n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 nummers"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev module"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n mislukt"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n voltooid"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n te gaan"
@ -182,6 +182,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Over %1"
@ -2810,7 +2813,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Nul"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "%n nummers toevoegen"
@ -2869,7 +2872,7 @@ msgstr "aan"
msgid "options"
msgstr "opties"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "%n nummers verwijderen"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:28+0000\n"
"Last-Translator: Cédric VALMARY (Tot en òc) <cvalmary@yahoo.fr>\n"
"Language-Team: Occitan (post 1500) <oc@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:28+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: \n"
msgid " ms"
msgstr " mseg"
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr ""
@ -174,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "A prepaus de « %1 »"
@ -2729,7 +2732,7 @@ msgstr ""
msgid "Zero"
msgstr "Zèro"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2788,7 +2791,7 @@ msgstr ""
msgid "options"
msgstr "opcions"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2011-03-09 07:23+0000\n"
"Last-Translator: Harmanpreet Singh Gill <Unknown>\n"
"Language-Team: Punjabi <pa@li.org>\n"
"Language: pa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -81,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr ""
@ -173,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr ""
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr ""
@ -2728,7 +2732,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2787,7 +2791,7 @@ msgstr ""
msgid "options"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -10,12 +10,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-23 18:17+0000\n"
"Last-Translator: Michał Ziąbkowski <Unknown>\n"
"Language-Team: Polish <>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:28+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: \n"
"X-Language: pl_PL\n"
msgid " ms"
@ -82,15 +82,15 @@ msgstr "%1 ścieżek"
msgid "%1: Wiimotedev module"
msgstr "%1: moduł Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n nieudane"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n zakończone"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "pozostało %n"
@ -183,6 +183,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "O programie %1"
@ -2802,7 +2805,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "dodaj %n utworów"
@ -2861,7 +2864,7 @@ msgstr "w dniu"
msgid "options"
msgstr "opcje"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "usuń %n utworów"

View File

@ -11,13 +11,13 @@ msgstr ""
"PO-Revision-Date: 2011-03-11 21:26+0000\n"
"Last-Translator: Sérgio Marques <Unknown>\n"
"Language-Team: \n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-12 05:17+0000\n"
"X-Generator: Launchpad (build 12559)\n"
"X-Poedit-Country: PORTUGAL\n"
"Language: pt\n"
"X-Poedit-Language: Portuguese\n"
msgid " ms"
@ -84,15 +84,15 @@ msgstr "%1 músicas"
msgid "%1: Wiimotedev module"
msgstr "%1: Módulo Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n falha(s)"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n concluída(s)"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n por converter"
@ -184,6 +184,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Sobre %1"
@ -2812,7 +2815,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "adicionar %n músicas"
@ -2871,7 +2874,7 @@ msgstr "em"
msgid "options"
msgstr "opções"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "remover %n músicas"

View File

@ -12,12 +12,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 15:51+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:29+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: pt_BR\n"
msgid " ms"
msgstr " ms"
@ -83,15 +83,15 @@ msgstr "%1 faixas"
msgid "%1: Wiimotedev module"
msgstr "%1: Modulo do dispositivo Wiimote"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n falhou"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n finalizado"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n faltando"
@ -181,6 +181,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Sobre %1"
@ -2799,7 +2802,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "Adicionar %n músicas"
@ -2858,7 +2861,7 @@ msgstr "ligado"
msgid "options"
msgstr "opções"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "Remover %n músicas"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:14+0000\n"
"Last-Translator: Daniel Șerbănescu <cyber19rider@gmail.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:28+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: ro\n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n eșuat"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n finalizat"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n rămas"
@ -176,6 +176,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Despre %1"
@ -2733,7 +2736,7 @@ msgstr ""
msgid "Zero"
msgstr "Zero"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2792,7 +2795,7 @@ msgstr ""
msgid "options"
msgstr "opțiuni"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "elimină %n piese"

View File

@ -10,12 +10,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-09 09:33+0000\n"
"Last-Translator: Pavel Maleev <Unknown>\n"
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-10 05:30+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: ru\n"
msgid " ms"
msgstr " мс"
@ -81,15 +81,15 @@ msgstr "%1 композиций"
msgid "%1: Wiimotedev module"
msgstr "%1: модуль Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n с ошибкой"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n завершено"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n осталось"
@ -181,6 +181,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "О «%1»"
@ -2793,7 +2796,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "По-умолчанию"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "добавить %n композиций"
@ -2852,7 +2855,7 @@ msgstr "на"
msgid "options"
msgstr "настройки"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "удалить %n композиций"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-07 00:25+0000\n"
"Last-Translator: DAG Software <Unknown>\n"
"Language-Team: \n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-08 05:24+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: \n"
"X-Language: sk_SK\n"
msgid " ms"
@ -83,15 +83,15 @@ msgstr "%1 skladieb"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev modul"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n zlyhalo"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n dokončených"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n zostávajúcich"
@ -182,6 +182,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "O %1"
@ -2795,7 +2798,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Vynulovať"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "pridať %n piesní"
@ -2854,7 +2857,7 @@ msgstr "na"
msgid "options"
msgstr "možnosti"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "odstrániť %n piesní"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-28 12:17+0000\n"
"Last-Translator: R33D3M33R <Unknown>\n"
"Language-Team: Slovenian <sl@li.org>\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:28+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: sl\n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 skladb"
msgid "%1: Wiimotedev module"
msgstr "%1: Wimotedev modul"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n spodletelih"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n končanih"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n preostaja"
@ -181,6 +181,9 @@ msgstr "A-Ž"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "O %1"
@ -2798,7 +2801,7 @@ msgstr "Ž-A"
msgid "Zero"
msgstr "Brez"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "dodaj %n skladb"
@ -2857,7 +2860,7 @@ msgstr "v"
msgid "options"
msgstr "možnosti"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "odstrani %n skladb"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:28+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Serbian <sr@li.org>\n"
"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:28+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: sr\n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 нумера"
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n завршено"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n преостало"
@ -174,6 +174,9 @@ msgstr ""
msgid "AIFF"
msgstr "АИФФ"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "О %1"
@ -2735,7 +2738,7 @@ msgstr ""
msgid "Zero"
msgstr "Нулто"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "додај %n песама"
@ -2794,7 +2797,7 @@ msgstr ""
msgid "options"
msgstr "Опције"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "remove %n песама"

View File

@ -12,12 +12,12 @@ msgstr ""
"Last-Translator: Fredrik Andersson <fredrikfritte@gmail.com>\n"
"Language-Team: Launchpad Swedish Translators <lp-l10n-sv@lists.launchpad."
"net>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:29+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: sv\n"
"X-Poedit-Language: Swedish\n"
msgid " ms"
@ -84,15 +84,15 @@ msgstr "%1 spår"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev-modul"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n misslyckades"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n färdig"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n återstår"
@ -184,6 +184,9 @@ msgstr "A-Ö"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Om %1"
@ -2796,7 +2799,7 @@ msgstr "Ö-A"
msgid "Zero"
msgstr "Noll"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "lägg till %n låtar"
@ -2855,7 +2858,7 @@ msgstr "på"
msgid "options"
msgstr "alternativ"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "ta bort %n låtar"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:17+0000\n"
"Last-Translator: Ekrem Kocadere <ekocadere@hotmail.com>\n"
"Language-Team: Turkish <tr@li.org>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:29+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: tr\n"
msgid " ms"
msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 parça"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev modülü"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n başarısız"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n tamamlandı"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n kalan"
@ -181,6 +181,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "%1 Hakkında"
@ -2778,7 +2781,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Sıfır"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "%n şarkıyı ekle"
@ -2837,7 +2840,7 @@ msgstr "açık"
msgid "options"
msgstr "seçenekler"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "%n şarkıyı kaldır"

View File

@ -72,15 +72,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr ""
@ -164,6 +164,9 @@ msgstr ""
msgid "AIFF"
msgstr ""
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr ""
@ -2719,7 +2722,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -2778,7 +2781,7 @@ msgstr ""
msgid "options"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-08 10:39+0000\n"
"Last-Translator: Sergii Galashyn <Unknown>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-09 05:17+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: uk\n"
msgid " ms"
msgstr " мс"
@ -82,15 +82,15 @@ msgstr "%1 доріжок"
msgid "%1: Wiimotedev module"
msgstr "%1: Модуль Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n з помилкою"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n завершено"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n залишилось"
@ -183,6 +183,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Про %1"
@ -2790,7 +2793,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "додати %n композицій"
@ -2849,7 +2852,7 @@ msgstr "на"
msgid "options"
msgstr "параметри"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "вилучити %n композицій"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-10 14:11+0000\n"
"Last-Translator: Lê Trường An <xinemdungkhoc1@gmail.com>\n"
"Language-Team: Vietnamese <vi@li.org>\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-11 05:06+0000\n"
"X-Generator: Launchpad (build 12559)\n"
"Language: vi\n"
msgid " ms"
msgstr " mili giây"
@ -82,15 +82,15 @@ msgstr "%1 track"
msgid "%1: Wiimotedev module"
msgstr "%1: mô-đun Wiimotedev"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n thất bại"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n kết thúc"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "còn lại %n"
@ -182,6 +182,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "Giới thiệu về %1"
@ -2796,7 +2799,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "và %n bài hát"
@ -2855,7 +2858,7 @@ msgstr "on"
msgid "options"
msgstr "options"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "xóa %n bài hát"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-08 11:50+0000\n"
"Last-Translator: Lele Long <schemacs@gmail.com>\n"
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
"Language: zh\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-09 05:17+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: zh\n"
msgid " ms"
msgstr " 毫秒"
@ -82,15 +82,15 @@ msgstr "%1 首"
msgid "%1: Wiimotedev module"
msgstr "%1: Wii 遥控器设备模块"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n 失败"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n 完成"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n 剩余"
@ -176,6 +176,9 @@ msgstr "A-Z"
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "关于 %1"
@ -2731,7 +2734,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "00"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "添加 %n 首曲目"
@ -2790,7 +2793,7 @@ msgstr ""
msgid "options"
msgstr "选项"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "移除 %n 歌"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:35+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Chinese (Traditional) <zh_TW@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-07 05:29+0000\n"
"X-Generator: Launchpad (build 12351)\n"
"Language: \n"
msgid " ms"
msgstr " 毫秒"
@ -82,15 +82,15 @@ msgstr "%1 歌曲"
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n 失敗的"
#, c-format
#, c-format, qt-plural-format
msgid "%n finished"
msgstr "%n 完成的"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n 剩餘的"
@ -178,6 +178,9 @@ msgstr ""
msgid "AIFF"
msgstr "AIFF"
msgid "ALL GLORY TO THE HYPNOTOAD"
msgstr ""
#, qt-format
msgid "About %1"
msgstr "關於 %1"
@ -2735,7 +2738,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "加入 %n 歌"
@ -2794,7 +2797,7 @@ msgstr ""
msgid "options"
msgstr "選項"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "移除 %n 歌"