iPod colour/model detection -> icon name.

This commit is contained in:
John Maguire 2010-07-25 00:20:18 +00:00
parent 2d4a26ade9
commit fa923a254e
35 changed files with 369 additions and 206 deletions

View File

@ -89,8 +89,11 @@ QStringList DeviceKitLister::DeviceUniqueIDs() {
}
QStringList DeviceKitLister::DeviceIcons(const QString &id) {
return QStringList() <<
LockAndGetDeviceInfo(id, &DeviceData::device_presentation_icon_name);
QString path = LockAndGetDeviceInfo(id, &DeviceData::device_mount_paths)[0];
QStringList guessed = DeviceLister::GuessIconForPath(path);
return QStringList()
<< guessed
<< LockAndGetDeviceInfo(id, &DeviceData::device_presentation_icon_name);
}
QString DeviceKitLister::DeviceManufacturer(const QString &id) {

View File

@ -18,9 +18,12 @@
#include "devicelister.h"
#include <QFile>
#include <QStringList>
#include <QThread>
#include <QtDebug>
#include <gpod/itdb.h>
DeviceLister::DeviceLister()
: thread_(NULL)
{
@ -46,13 +49,148 @@ void DeviceLister::ThreadStarted() {
Init();
}
QUrl DeviceLister::MakeUrlFromLocalPath(const QString &path) {
namespace {
bool IsIpod(const QString& path) {
return QFile::exists(path + "/iTunes_Control") ||
QFile::exists(path + "/iPod_Control");
}
QString GetIpodColour(Itdb_IpodModel model) {
switch (model) {
case ITDB_IPOD_MODEL_MINI_GREEN:
case ITDB_IPOD_MODEL_NANO_GREEN:
case ITDB_IPOD_MODEL_SHUFFLE_GREEN:
return "green";
case ITDB_IPOD_MODEL_MINI_BLUE:
case ITDB_IPOD_MODEL_NANO_BLUE:
case ITDB_IPOD_MODEL_SHUFFLE_BLUE:
return "blue";
case ITDB_IPOD_MODEL_MINI_PINK:
case ITDB_IPOD_MODEL_NANO_PINK:
case ITDB_IPOD_MODEL_SHUFFLE_PINK:
return "pink";
case ITDB_IPOD_MODEL_MINI_GOLD:
return "gold";
case ITDB_IPOD_MODEL_NANO_WHITE:
case ITDB_IPOD_MODEL_VIDEO_WHITE:
return "white";
case ITDB_IPOD_MODEL_NANO_SILVER:
case ITDB_IPOD_MODEL_CLASSIC_SILVER:
return "silver";
case ITDB_IPOD_MODEL_NANO_RED:
case ITDB_IPOD_MODEL_SHUFFLE_RED:
return "red";
case ITDB_IPOD_MODEL_NANO_YELLOW:
return "yellow";
case ITDB_IPOD_MODEL_NANO_PURPLE:
case ITDB_IPOD_MODEL_SHUFFLE_PURPLE:
return "purple";
case ITDB_IPOD_MODEL_NANO_ORANGE:
case ITDB_IPOD_MODEL_SHUFFLE_ORANGE:
return "orange";
case ITDB_IPOD_MODEL_NANO_BLACK:
case ITDB_IPOD_MODEL_VIDEO_BLACK:
case ITDB_IPOD_MODEL_CLASSIC_BLACK:
return "black";
default:
return QString();
}
}
QString GetIpodModel(Itdb_IpodModel model) {
switch (model) {
case ITDB_IPOD_MODEL_MINI:
case ITDB_IPOD_MODEL_MINI_BLUE:
case ITDB_IPOD_MODEL_MINI_PINK:
case ITDB_IPOD_MODEL_MINI_GREEN:
case ITDB_IPOD_MODEL_MINI_GOLD:
return "mini";
case ITDB_IPOD_MODEL_NANO_WHITE:
case ITDB_IPOD_MODEL_NANO_BLACK:
case ITDB_IPOD_MODEL_NANO_SILVER:
case ITDB_IPOD_MODEL_NANO_BLUE:
case ITDB_IPOD_MODEL_NANO_GREEN:
case ITDB_IPOD_MODEL_NANO_PINK:
case ITDB_IPOD_MODEL_NANO_RED:
case ITDB_IPOD_MODEL_NANO_YELLOW:
case ITDB_IPOD_MODEL_NANO_PURPLE:
case ITDB_IPOD_MODEL_NANO_ORANGE:
return "nano";
case ITDB_IPOD_MODEL_SHUFFLE:
case ITDB_IPOD_MODEL_SHUFFLE_SILVER:
case ITDB_IPOD_MODEL_SHUFFLE_PINK:
case ITDB_IPOD_MODEL_SHUFFLE_BLUE:
case ITDB_IPOD_MODEL_SHUFFLE_GREEN:
case ITDB_IPOD_MODEL_SHUFFLE_ORANGE:
case ITDB_IPOD_MODEL_SHUFFLE_RED:
return "shuffle";
case ITDB_IPOD_MODEL_COLOR:
case ITDB_IPOD_MODEL_REGULAR:
case ITDB_IPOD_MODEL_CLASSIC_SILVER:
case ITDB_IPOD_MODEL_CLASSIC_BLACK:
return "standard";
case ITDB_IPOD_MODEL_COLOR_U2:
case ITDB_IPOD_MODEL_REGULAR_U2:
return "U2";
default:
return QString();
}
}
}
QUrl DeviceLister::MakeUrlFromLocalPath(const QString& path) {
#ifdef HAVE_LIBGPOD
if (QFile::exists(path + "/iTunes_Control") ||
QFile::exists(path + "/iPod_Control")) {
if (IsIpod(path)) {
return QUrl("ipod://" + path);
}
#endif
return QUrl::fromLocalFile(path);
}
QStringList DeviceLister::GuessIconForPath(const QString& path) {
QStringList ret;
if (IsIpod(path)) {
Itdb_Device* device = itdb_device_new();
itdb_device_set_mountpoint(device, path.toLocal8Bit().constData());
const Itdb_IpodInfo* info = itdb_device_get_ipod_info(device);
qDebug() << info->model_number
<< info->ipod_model
<< GetIpodColour(info->ipod_model);
QString colour = GetIpodColour(info->ipod_model);
QString model = GetIpodModel(info->ipod_model);
itdb_device_free(device);
if (!colour.isEmpty()) {
QString colour_icon = "multimedia-player-ipod-%1-%2.png";
ret << colour_icon.arg(colour, model);
}
if (!model.isEmpty()) {
QString model_icon = "multimedia-player-ipod-%1.png";
ret << model_icon.arg(model);
}
}
return ret;
}

View File

@ -62,6 +62,8 @@ protected:
virtual void Init() = 0;
QUrl MakeUrlFromLocalPath(const QString& path);
QStringList GuessIconForPath(const QString& path);
protected:
QThread* thread_;

View File

@ -60,7 +60,11 @@ QStringList GioLister::DeviceUniqueIDs() {
}
QStringList GioLister::DeviceIcons(const QString &id) {
return LockAndGetMountInfo(id, &MountInfo::icon_names);
QStringList ret;
QString path = LockAndGetMountInfo(id, &MountInfo::mount_path);
ret << DeviceLister::GuessIconForPath(path)
<< LockAndGetMountInfo(id, &MountInfo::icon_names);
return ret;
}
QString GioLister::DeviceManufacturer(const QString &id) {

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-05-21 01:02+0000\n"
"Last-Translator: EL7R <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"
@ -43,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
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 ""
@ -578,7 +579,7 @@ msgstr ""
msgid "Edit..."
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr ""
@ -1709,7 +1710,7 @@ msgstr ""
msgid "[click to edit]"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "أضِف %n أغاني\\أغنية"
@ -1732,7 +1733,7 @@ msgstr "انقل الأغاني"
msgid "options"
msgstr "الخيارات"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "أزِل %n أغاني\\أغنية"

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-07-06 14:54+0000\n"
"Last-Translator: Hristo Apostolov <Unknown>\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"
@ -43,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
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 ""
@ -578,7 +579,7 @@ msgstr ""
msgid "Edit..."
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr ""
@ -1709,7 +1710,7 @@ msgstr ""
msgid "[click to edit]"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -1732,7 +1733,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: 2010-07-20 03:50+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: 2010-07-21 03:55+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: \n"
"X-Language: cs_CZ\n"
msgid " ms"
@ -45,15 +45,15 @@ msgstr ""
msgid "%1 tracks"
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 ""
@ -580,7 +580,7 @@ msgstr "Upravit informaci o skladbách..."
msgid "Edit..."
msgstr "Upravit..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Úprava %n stop"
@ -1714,7 +1714,7 @@ msgstr "Vynulovat"
msgid "[click to edit]"
msgstr "[pro úpravy klikněte]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "Přidej %n skladby"
@ -1737,7 +1737,7 @@ msgstr "Přesuň skladby"
msgid "options"
msgstr "Možnosti"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "Odeber %n skladeb"

View File

@ -12,12 +12,12 @@ msgstr ""
"PO-Revision-Date: 2010-07-16 21:57+0000\n"
"Last-Translator: Kabel <CaptainKabel@gmail.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: 2010-07-17 04:04+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: da\n"
msgid " ms"
msgstr " ms"
@ -45,15 +45,15 @@ msgstr ""
msgid "%1 tracks"
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 ""
@ -580,7 +580,7 @@ msgstr "Redigér sporinformation..."
msgid "Edit..."
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Redigerer %n spor"
@ -1717,7 +1717,7 @@ msgstr "Nul"
msgid "[click to edit]"
msgstr "[Klik for at redigere]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "tilføj %n sange"
@ -1740,7 +1740,7 @@ msgstr "flyt sange"
msgid "options"
msgstr "indstillinger"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "fjern %n sange"

View File

@ -12,6 +12,7 @@ msgstr ""
"PO-Revision-Date: 2010-07-19 11:13+0000\n"
"Last-Translator: murrayy <julian.held@gmail.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"
@ -44,15 +45,15 @@ msgstr "%1 ausgewählt von"
msgid "%1 tracks"
msgstr "%1 Stücke"
#, 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"
@ -587,7 +588,7 @@ msgstr "Metadaten bearbeiten..."
msgid "Edit..."
msgstr "Bearbeiten..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "%n Stücke bearbeiten"
@ -1739,7 +1740,7 @@ msgstr "Null"
msgid "[click to edit]"
msgstr "[zum Bearbeiten klicken]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "%n Stücke hinzufügen"
@ -1762,7 +1763,7 @@ msgstr "Stücke verschieben"
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: 2010-07-18 09:56+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: 2010-07-19 03:54+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: \n"
"X-Language: el_GR\n"
"X-Source-Language: en\n"
@ -46,15 +46,15 @@ msgstr "%1 επιλεγμένα από"
msgid "%1 tracks"
msgstr "%1 κομμάτια"
#, 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 απομένει"
@ -591,7 +591,7 @@ msgstr "Τροποποίηση πληροφοριών κομματιού..."
msgid "Edit..."
msgstr "Επεξεργασία..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Τροποποίηση %n κομματιών"
@ -1745,7 +1745,7 @@ msgstr "Zero"
msgid "[click to edit]"
msgstr "[κλικ για τροποποίηση]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "προσθήκη %n τραγουδιών"
@ -1768,7 +1768,7 @@ msgstr "μετακίνηση τραγουδιών"
msgid "options"
msgstr "επιλογές"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "αφαίρεση %n τραγουδιών"

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-06-17 01:37+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"
@ -43,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
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"
@ -580,7 +581,7 @@ msgstr "Edit track information..."
msgid "Edit..."
msgstr "Edit..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Editing %n tracks"
@ -1714,7 +1715,7 @@ msgstr "Zero"
msgid "[click to edit]"
msgstr "[click to edit]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "add %n songs"
@ -1737,7 +1738,7 @@ msgstr "move songs"
msgid "options"
msgstr "options"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "remove %n songs"

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-06-17 01:38+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"
@ -43,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
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 ""
@ -578,7 +579,7 @@ msgstr "Edit track information..."
msgid "Edit..."
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Editing %n tracks"
@ -1711,7 +1712,7 @@ msgstr "Zero"
msgid "[click to edit]"
msgstr "[click to edit]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -1734,7 +1735,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-07-19 21:03+0000\n"
"Last-Translator: Carlos Jenkins Pérez <Unknown>\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: 2010-07-20 04:01+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: \n"
"X-Language: es_ES\n"
msgid " ms"
@ -45,15 +45,15 @@ msgstr "%1 seleccionadas de"
msgid "%1 tracks"
msgstr "%1 pistas"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n fallaron"
#, 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)"
@ -592,7 +592,7 @@ msgstr "Editar información de la pista..."
msgid "Edit..."
msgstr "Editar..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Editando %n pistas"
@ -1746,7 +1746,7 @@ msgstr "Zero"
msgid "[click to edit]"
msgstr "[click para editar]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "agregar %n pistas"
@ -1769,7 +1769,7 @@ msgstr "mover pistas"
msgid "options"
msgstr "opciones"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "remover %n pistas"

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-06-30 12:14+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\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"
@ -43,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
msgstr "%1 kappaletta"
#, 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 ""
@ -578,7 +579,7 @@ msgstr "Muokkaa kappaleen tietoja..."
msgid "Edit..."
msgstr "Muokkaa..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr ""
@ -1711,7 +1712,7 @@ msgstr ""
msgid "[click to edit]"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -1734,7 +1735,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: 2010-07-23 20:36+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: 2010-07-24 04:12+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: \n"
"X-Language: fr_FR\n"
msgid " ms"
@ -45,15 +45,15 @@ msgstr ""
msgid "%1 tracks"
msgstr "%1 pistes"
#, 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"
@ -584,7 +584,7 @@ msgstr "Modifier la description de la piste..."
msgid "Edit..."
msgstr "Éditer..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Éditer %n pistes"
@ -1726,7 +1726,7 @@ msgstr "Zéro"
msgid "[click to edit]"
msgstr "[cliquer pour modifier]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -1749,7 +1749,7 @@ msgstr "déplacer les chansons"
msgid "options"
msgstr "options"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-04-27 16:34+0000\n"
"Last-Translator: andreout <andre@outeiro.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"
@ -43,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
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 ""
@ -578,7 +579,7 @@ msgstr ""
msgid "Edit..."
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Editando %n faixas"
@ -1711,7 +1712,7 @@ msgstr ""
msgid "[click to edit]"
msgstr "[clique para editar]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -1734,7 +1735,7 @@ msgstr ""
msgid "options"
msgstr "Opzóns"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -12,12 +12,12 @@ msgstr ""
"PO-Revision-Date: 2010-07-13 06:56+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: 2010-07-14 03:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: it\n"
msgid " ms"
msgstr " ms"
@ -45,15 +45,15 @@ msgstr "%1 selezionate di"
msgid "%1 tracks"
msgstr "%1 tracce"
#, 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"
@ -590,7 +590,7 @@ msgstr "Modifica informazioni traccia..."
msgid "Edit..."
msgstr "Modifica..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Modifica di %n tracce"
@ -1750,7 +1750,7 @@ msgstr "Zero"
msgid "[click to edit]"
msgstr "[clic per modificare]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "aggiungi %n brani"
@ -1773,7 +1773,7 @@ msgstr "sposta brani"
msgid "options"
msgstr "opzioni"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "rimuovi %n brani"

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-04-27 16:33+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"
@ -43,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
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 ""
@ -578,7 +579,7 @@ msgstr ""
msgid "Edit..."
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr ""
@ -1711,7 +1712,7 @@ msgstr "Нөл"
msgid "[click to edit]"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -1734,7 +1735,7 @@ msgstr ""
msgid "options"
msgstr "опциялар"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-07-22 12:24+0000\n"
"Last-Translator: Kazimieras Aliulis <Unknown>\n"
"Language-Team: Lithuanian <lt@li.org>\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -43,15 +44,15 @@ msgstr "%1 pažymėta iš"
msgid "%1 tracks"
msgstr "%1 takeliai"
#, 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 ""
@ -578,7 +579,7 @@ msgstr ""
msgid "Edit..."
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr ""
@ -1709,7 +1710,7 @@ msgstr ""
msgid "[click to edit]"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -1732,7 +1733,7 @@ msgstr ""
msgid "options"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-04-14 22:22+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"
@ -43,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
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 ""
@ -578,7 +579,7 @@ msgstr "Rediger informasjon om sporet..."
msgid "Edit..."
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Endrer %n spor"
@ -1713,7 +1714,7 @@ msgstr "Null"
msgid "[click to edit]"
msgstr "[klikk for å endre]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -1736,7 +1737,7 @@ msgstr ""
msgid "options"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-07-15 22:34+0000\n"
"Last-Translator: Balaam's Miracle <Unknown>\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"
@ -43,15 +44,15 @@ msgstr "%1 geselecteerd van"
msgid "%1 tracks"
msgstr "%1 tracks"
#, 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"
@ -586,7 +587,7 @@ msgstr "Trackinformatie bewerken..."
msgid "Edit..."
msgstr "Bewerken..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "%n tracks bewerken"
@ -1738,7 +1739,7 @@ msgstr "Nul"
msgid "[click to edit]"
msgstr "[klik om te bewerken]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "%n nummers toevoegen"
@ -1761,7 +1762,7 @@ msgstr "nummers verplaatsen"
msgid "options"
msgstr "opties"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "%n nummers verwijderen"

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-05-21 01:01+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"
@ -43,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
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 ""
@ -578,7 +579,7 @@ msgstr ""
msgid "Edit..."
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr ""
@ -1709,7 +1710,7 @@ msgstr "Zèro"
msgid "[click to edit]"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -1732,7 +1733,7 @@ msgstr ""
msgid "options"
msgstr "opcions"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-07-23 09:51+0000\n"
"Last-Translator: Patryk Wychowaniec <patryk1303@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: 2010-07-24 04:12+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: \n"
"X-Language: pl_PL\n"
msgid " ms"
@ -45,15 +45,15 @@ msgstr "%1 zaznaczonych z"
msgid "%1 tracks"
msgstr "%1 ścieżek"
#, c-format
#, c-format, qt-plural-format
msgid "%n failed"
msgstr "%n zawiodło"
#, 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 ""
@ -585,7 +585,7 @@ msgstr "Edytuj informacje o utworze..."
msgid "Edit..."
msgstr "Edytuj..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Edytowanie %n ścieżek"
@ -1721,7 +1721,7 @@ msgstr ""
msgid "[click to edit]"
msgstr "[kliknij aby edytować]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -1744,7 +1744,7 @@ msgstr ""
msgid "options"
msgstr "opcje"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-07-20 09:28+0000\n"
"Last-Translator: Sérgio Marques <Unknown>\n"
"Language-Team: Portuguese <pt@li.org>\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: 2010-07-21 03:55+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: pt\n"
msgid " ms"
msgstr " ms"
@ -44,15 +44,15 @@ msgstr "seleccionada(s) %1 de"
msgid "%1 tracks"
msgstr "%1 faixas"
#, 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 restante(s)"
@ -588,7 +588,7 @@ msgstr "Editar a informação da faixa..."
msgid "Edit..."
msgstr "Editar..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Editando %n faixas"
@ -1736,7 +1736,7 @@ msgstr "Zero"
msgid "[click to edit]"
msgstr "[clique para editar]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "adicionar %n canções"
@ -1759,7 +1759,7 @@ msgstr "mover canções"
msgid "options"
msgstr "opções"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "remover %n canções"

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-06-26 18:01+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"
@ -43,15 +44,15 @@ msgstr "%1 selecionado(s) de"
msgid "%1 tracks"
msgstr "%1 faixas"
#, 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 fizalizado"
#, c-format
#, c-format, qt-plural-format
msgid "%n remaining"
msgstr "%n faltando"
@ -583,7 +584,7 @@ msgstr "Editar informações da faixa..."
msgid "Edit..."
msgstr "Editar..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Editando %n faixas"
@ -1729,7 +1730,7 @@ msgstr "Zero"
msgid "[click to edit]"
msgstr "[clique para editar]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "Adicionar %n músicas"
@ -1752,7 +1753,7 @@ msgstr "mover músicas"
msgid "options"
msgstr "opções"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "Remover %n músicas"

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-05-03 21:09+0000\n"
"Last-Translator: David Sansome <me@davidsansome.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"
@ -43,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
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 ""
@ -578,7 +579,7 @@ msgstr ""
msgid "Edit..."
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr ""
@ -1710,7 +1711,7 @@ msgstr "Zero"
msgid "[click to edit]"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -1733,7 +1734,7 @@ msgstr ""
msgid "options"
msgstr "opțiuni"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr ""

View File

@ -10,12 +10,12 @@ msgstr ""
"PO-Revision-Date: 2010-07-20 06:51+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: 2010-07-21 03:55+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: ru\n"
msgid " ms"
msgstr " мс"
@ -43,15 +43,15 @@ msgstr "%1 выбрано из"
msgid "%1 tracks"
msgstr "%1 композиций"
#, 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 осталось"
@ -586,7 +586,7 @@ msgstr "Изменить информацию о композиции..."
msgid "Edit..."
msgstr "Изменить..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Редактирую %n треков"
@ -1736,7 +1736,7 @@ msgstr "По-умолчанию"
msgid "[click to edit]"
msgstr "[щелкните, чтобы изменить]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "добавить %n композиций"
@ -1759,7 +1759,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-07-20 09:42+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: 2010-07-21 03:55+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: \n"
"X-Language: sk_SK\n"
msgid " ms"
@ -45,15 +45,15 @@ msgstr "%1 vybratých z"
msgid "%1 tracks"
msgstr "%1 skladieb"
#, 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"
@ -588,7 +588,7 @@ msgstr "Upravť informácie o skladbe..."
msgid "Edit..."
msgstr "Upraviť..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Upravovanie %n skladieb"
@ -1734,7 +1734,7 @@ msgstr "Vynulovať"
msgid "[click to edit]"
msgstr "[kliknite pre úpravu]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "pridať %n piesní"
@ -1757,7 +1757,7 @@ msgstr "presunúť piesne"
msgid "options"
msgstr "možnosti"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "odstrániť %n piesní"

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-07-23 16:01+0000\n"
"Last-Translator: Далибор Ђурић <Unknown>\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"
@ -43,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
msgstr "%1 нумера"
#, 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 преостало"
@ -580,7 +581,7 @@ msgstr "Уреди податке о нумери..."
msgid "Edit..."
msgstr "Уреди..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Уређивање %n нумера"
@ -1716,7 +1717,7 @@ msgstr "Нулто"
msgid "[click to edit]"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "додај %n песама"
@ -1739,7 +1740,7 @@ msgstr ""
msgid "options"
msgstr "Опције"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "remove %n песама"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-07-21 16:23+0000\n"
"Last-Translator: alopex <Unknown>\n"
"Language-Team: Swedish <sv@li.org>\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: 2010-07-22 04:11+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: sv\n"
msgid " ms"
msgstr " ms"
@ -44,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
msgstr ""
#, 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"
@ -581,7 +581,7 @@ msgstr "Redigera spårinformation..."
msgid "Edit..."
msgstr "Redigera..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Redigerar %n spår"
@ -1718,7 +1718,7 @@ msgstr "Noll"
msgid "[click to edit]"
msgstr "[klicka för att redigera]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "Lägg till %n songer"
@ -1741,7 +1741,7 @@ msgstr "Flytta songer"
msgid "options"
msgstr "alternativ"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "Ta bort %n songer"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-07-15 05:59+0000\n"
"Last-Translator: Cihan Ersoy <Unknown>\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: 2010-07-16 03:52+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: tr\n"
msgid " ms"
msgstr " ms"
@ -44,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
msgstr "%1 parça"
#, 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"
@ -579,7 +579,7 @@ msgstr "Parça bilgisini düzenle..."
msgid "Edit..."
msgstr "Düzenle..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr ""
@ -1716,7 +1716,7 @@ msgstr ""
msgid "[click to edit]"
msgstr "[düzenlemek için tıklayın]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "%n şakıyı ekle"
@ -1739,7 +1739,7 @@ msgstr "Parçaları taşı"
msgid "options"
msgstr "seçenekler"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "%n şakıyı çıkart"

View File

@ -34,15 +34,15 @@ msgstr ""
msgid "%1 tracks"
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 ""
@ -569,7 +569,7 @@ msgstr ""
msgid "Edit..."
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr ""
@ -1700,7 +1700,7 @@ msgstr ""
msgid "[click to edit]"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -1723,7 +1723,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: 2010-07-20 06:52+0000\n"
"Last-Translator: Sergiy Gavrylov <sergiovana@bigmir.net>\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: 2010-07-21 03:55+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: uk\n"
msgid " ms"
msgstr " мс"
@ -44,15 +44,15 @@ msgstr "вибрано з %1"
msgid "%1 tracks"
msgstr "%1 доріжок"
#, 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 залишилось"
@ -587,7 +587,7 @@ msgstr "Редагувати дані про доріжку..."
msgid "Edit..."
msgstr "Змінити..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "Редагування %n доріжок"
@ -1735,7 +1735,7 @@ msgstr "Zero"
msgid "[click to edit]"
msgstr "[клацніть, щоб змінити]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "додати %n композицій"
@ -1758,7 +1758,7 @@ msgstr "перемістити композиції"
msgid "options"
msgstr "параметри"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "вилучити %n композицій"

View File

@ -11,6 +11,7 @@ msgstr ""
"PO-Revision-Date: 2010-06-07 01:43+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Chinese (Simplified) <zh_CN@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -43,15 +44,15 @@ msgstr ""
msgid "%1 tracks"
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 ""
@ -578,7 +579,7 @@ msgstr ""
msgid "Edit..."
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr ""
@ -1709,7 +1710,7 @@ msgstr ""
msgid "[click to edit]"
msgstr ""
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr ""
@ -1732,7 +1733,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: 2010-07-20 03:55+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: 2010-07-21 03:55+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Language: \n"
msgid " ms"
msgstr " 毫秒"
@ -44,15 +44,15 @@ msgstr "%1 選定"
msgid "%1 tracks"
msgstr "%1 歌曲"
#, 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 剩餘的"
@ -583,7 +583,7 @@ msgstr "編輯歌曲資訊..."
msgid "Edit..."
msgstr "編輯..."
#, c-format
#, c-format, qt-plural-format
msgid "Editing %n tracks"
msgstr "編輯 %n 歌曲"
@ -1717,7 +1717,7 @@ msgstr ""
msgid "[click to edit]"
msgstr "[點擊以編輯]"
#, c-format
#, c-format, qt-plural-format
msgid "add %n songs"
msgstr "加入 %n 歌"
@ -1740,7 +1740,7 @@ msgstr "移動歌曲"
msgid "options"
msgstr "選項"
#, c-format
#, c-format, qt-plural-format
msgid "remove %n songs"
msgstr "移除 %n 歌"