From 034555942b59928878139b79174bcef1e67ec081 Mon Sep 17 00:00:00 2001 From: David Sansome Date: Sat, 4 Sep 2010 11:09:59 +0000 Subject: [PATCH] Return some hardware information for WMDM devices, and fix drive paths on Windows 7 --- src/devices/wmdmlister.cpp | 31 ++++++++++++++++++++++---- src/devices/wmdmlister.h | 6 +++++- src/translations/ar.po | 32 +++++++++++++++++++++------ src/translations/bg.po | 32 +++++++++++++++++++++------ src/translations/ca.po | 36 +++++++++++++++++++++++-------- src/translations/cs.po | 32 +++++++++++++++++++++------ src/translations/da.po | 32 +++++++++++++++++++++------ src/translations/de.po | 32 +++++++++++++++++++++------ src/translations/el.po | 32 +++++++++++++++++++++------ src/translations/en_CA.po | 32 +++++++++++++++++++++------ src/translations/en_GB.po | 32 +++++++++++++++++++++------ src/translations/es.po | 32 +++++++++++++++++++++------ src/translations/fi.po | 32 +++++++++++++++++++++------ src/translations/fr.po | 32 +++++++++++++++++++++------ src/translations/gl.po | 32 +++++++++++++++++++++------ src/translations/hu.po | 32 +++++++++++++++++++++------ src/translations/it.po | 32 +++++++++++++++++++++------ src/translations/kk.po | 32 +++++++++++++++++++++------ src/translations/lt.po | 32 +++++++++++++++++++++------ src/translations/nb.po | 32 +++++++++++++++++++++------ src/translations/nl.po | 32 +++++++++++++++++++++------ src/translations/oc.po | 32 +++++++++++++++++++++------ src/translations/pl.po | 32 +++++++++++++++++++++------ src/translations/pt.po | 32 +++++++++++++++++++++------ src/translations/pt_BR.po | 32 +++++++++++++++++++++------ src/translations/ro.po | 32 +++++++++++++++++++++------ src/translations/ru.po | 32 +++++++++++++++++++++------ src/translations/sk.po | 32 +++++++++++++++++++++------ src/translations/sl.po | 32 +++++++++++++++++++++------ src/translations/sr.po | 32 +++++++++++++++++++++------ src/translations/sv.po | 32 +++++++++++++++++++++------ src/translations/tr.po | 32 +++++++++++++++++++++------ src/translations/translations.pot | 30 ++++++++++++++++++++------ src/translations/uk.po | 32 +++++++++++++++++++++------ src/translations/zh_CN.po | 32 +++++++++++++++++++++------ src/translations/zh_TW.po | 32 +++++++++++++++++++++------ 36 files changed, 883 insertions(+), 244 deletions(-) diff --git a/src/devices/wmdmlister.cpp b/src/devices/wmdmlister.cpp index 19a27c239..301e7d84e 100644 --- a/src/devices/wmdmlister.cpp +++ b/src/devices/wmdmlister.cpp @@ -27,6 +27,7 @@ #include #include +#include #include #include #include @@ -257,7 +258,10 @@ void WmdmLister::GuessDriveLetter(DeviceInfo* info) { if (name.ToString() == info->name_ && name.characters() != 0) { // We found it! qDebug() << "Looks like a win7 drive name" << QString::fromWCharArray(volume_path); - CheckDriveLetter(info, QString::fromWCharArray(volume_path)); + if (CheckDriveLetter(info, QString::fromWCharArray(volume_path))) { + info->device_name_ = QString::fromWCharArray(device_name); + info->volume_name_ = QString::fromWCharArray(volume_name); + } break; } } @@ -270,7 +274,7 @@ void WmdmLister::GuessDriveLetter(DeviceInfo* info) { FindVolumeClose(handle); } -void WmdmLister::CheckDriveLetter(DeviceInfo* info, const QString& drive) { +bool WmdmLister::CheckDriveLetter(DeviceInfo* info, const QString& drive) { // Sanity check to make sure there really is a drive there ScopedWCharArray path(drive.endsWith('\\') ? drive : (drive + "\\")); ScopedWCharArray name(QString(MAX_PATH + 1, '\0')); @@ -286,12 +290,14 @@ void WmdmLister::CheckDriveLetter(DeviceInfo* info, const QString& drive) { type, MAX_PATH // fat or ntfs )) { qWarning() << "Error getting volume information for" << drive; + return false; } else { qDebug() << "Validated drive letter" << drive; - info->mount_point_ = drive + "/"; + info->mount_point_ = path.ToString(); info->fs_name_ = name.ToString(); info->fs_type_ = type.ToString(); info->fs_serial_ = serial; + return true; } } @@ -325,7 +331,24 @@ quint64 WmdmLister::DeviceFreeSpace(const QString& id) { } QVariantMap WmdmLister::DeviceHardwareInfo(const QString& id) { - return QVariantMap(); + QVariantMap ret; + + QMutexLocker l(&mutex_); + if (!devices_.contains(id)) + return ret; + + const DeviceInfo& info = devices_[id]; + + ret[tr("Drive letter")] = QDir::toNativeSeparators(info.mount_point_); + ret[tr("Filesystem type")] = info.fs_type_; + ret[tr("Filesystem name")] = info.fs_name_; + ret[tr("Device name")] = info.device_name_; + ret[tr("Volume name")] = info.volume_name_; + + if (info.fs_serial_ != 0) + ret[tr("Filesystem serial number")] = info.fs_serial_; + + return ret; } QString WmdmLister::MakeFriendlyName(const QString& id) { diff --git a/src/devices/wmdmlister.h b/src/devices/wmdmlister.h index f32c72428..c83349049 100644 --- a/src/devices/wmdmlister.h +++ b/src/devices/wmdmlister.h @@ -97,6 +97,10 @@ private: QString fs_name_; QString fs_type_; int fs_serial_; + + // Information we get by querying win7-style FS devices + QString device_name_; + QString volume_name_; }; static const QUuid kDeviceProtocolMsc; @@ -108,7 +112,7 @@ private: void UpdateFreeSpace(DeviceInfo* info); void GuessDriveLetter(DeviceInfo* info); - void CheckDriveLetter(DeviceInfo* info, const QString& drive); + bool CheckDriveLetter(DeviceInfo* info, const QString& drive); static QString CanonicalNameToId(const QString& canonical_name); void WMDMDeviceAdded(const QString& canonical_name); diff --git a/src/translations/ar.po b/src/translations/ar.po index 2ded51b11..7440b8be2 100644 --- a/src/translations/ar.po +++ b/src/translations/ar.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-05-21 01:02+0000\n" "Last-Translator: EL7R \n" "Language-Team: Arabic \n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" "X-Launchpad-Export-Date: 2010-05-22 04:09+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -586,6 +586,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -643,6 +646,9 @@ msgstr "" msgid "Drag to reposition" msgstr "" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "" @@ -659,7 +665,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -780,6 +786,15 @@ msgstr "" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "المستوى الأول" @@ -1873,6 +1888,9 @@ msgstr "" msgid "Volume %1%" msgstr "" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "" @@ -1958,7 +1976,7 @@ msgstr "" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "أضِف %n أغاني\\أغنية" @@ -1978,7 +1996,7 @@ msgstr "انقل الأغاني" msgid "options" msgstr "الخيارات" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "أزِل %n أغاني\\أغنية" diff --git a/src/translations/bg.po b/src/translations/bg.po index fd706ad89..eeceff673 100644 --- a/src/translations/bg.po +++ b/src/translations/bg.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-07-24 15:58+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Bulgarian \n" -"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "X-Launchpad-Export-Date: 2010-07-25 04:25+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -586,6 +586,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -643,6 +646,9 @@ msgstr "" msgid "Drag to reposition" msgstr "" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "" @@ -659,7 +665,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -780,6 +786,15 @@ msgstr "" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "" @@ -1873,6 +1888,9 @@ msgstr "" msgid "Volume %1%" msgstr "" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "" @@ -1958,7 +1976,7 @@ msgstr "" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1978,7 +1996,7 @@ msgstr "" msgid "options" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/ca.po b/src/translations/ca.po index c88541f3f..ca9ca5918 100644 --- a/src/translations/ca.po +++ b/src/translations/ca.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-05 16:05+0000\n" "Last-Translator: txusko \n" "Language-Team: Catalan \n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "X-Launchpad-Export-Date: 2010-08-06 03:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 temes" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n han fallat" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n han acabat" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n restants" @@ -101,8 +101,8 @@ msgid "" "

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

" msgstr "" -"

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

\n" +"

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

\n" "\n" "

Si demarques entre claus una secció de text que contingui una fitxa de " "remplaçament, aquesta secció no es mostrarà si la fitxa de remplaçament es " @@ -598,6 +598,9 @@ msgstr "Dispositiu" msgid "Device Properties" msgstr "Propietats del dispositiu" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Propietats del dispositiu..." @@ -655,6 +658,9 @@ msgstr "Descarregant el catàleg de Magnatune" msgid "Drag to reposition" msgstr "Arrossegueu per canviar de posició" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Editar etiqueta \"%1\"..." @@ -671,7 +677,7 @@ msgstr "Editar la informació de la pista..." msgid "Edit..." msgstr "Editar..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editant %n pistes" @@ -794,6 +800,15 @@ msgstr "Fitxers" msgid "Files to transcode" msgstr "Arxius per codificar" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Primer nivell" @@ -1894,6 +1909,9 @@ msgstr "Paràmetres de visualització" msgid "Volume %1%" msgstr "Volumen %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1979,7 +1997,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[clickar per editar]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "afegeix %n cançons" @@ -1999,7 +2017,7 @@ msgstr "moure cançons" msgid "options" msgstr "opcions" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "elimina %n cançons" diff --git a/src/translations/cs.po b/src/translations/cs.po index 8e28c9d18..46ef0541d 100644 --- a/src/translations/cs.po +++ b/src/translations/cs.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 00:34+0000\n" "Last-Translator: David Sansome \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-08-11 04:06+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Language: cs_CZ\n" @@ -57,15 +57,15 @@ msgstr "" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -587,6 +587,9 @@ msgstr "Zařízení" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -644,6 +647,9 @@ msgstr "" msgid "Drag to reposition" msgstr "Přemístit přetažením" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Upravit tag\"%1\"..." @@ -660,7 +666,7 @@ msgstr "Upravit informaci o skladbách..." msgid "Edit..." msgstr "Upravit..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Úprava %n stop" @@ -783,6 +789,15 @@ msgstr "Soubory" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "První úroveň" @@ -1877,6 +1892,9 @@ msgstr "" msgid "Volume %1%" msgstr "Hlasitost %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1962,7 +1980,7 @@ msgstr "Vynulovat" msgid "[click to edit]" msgstr "[pro úpravy klikněte]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "Přidej %n skladby" @@ -1982,7 +2000,7 @@ msgstr "Přesuň skladby" msgid "options" msgstr "Možnosti" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "Odeber %n skladeb" diff --git a/src/translations/da.po b/src/translations/da.po index bc63c21e8..4d34d5fb9 100644 --- a/src/translations/da.po +++ b/src/translations/da.po @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2010-07-24 15:57+0000\n" "Last-Translator: Kabel \n" "Language-Team: Danish \n" -"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "X-Launchpad-Export-Date: 2010-07-25 04:25+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -57,15 +57,15 @@ msgstr "" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -587,6 +587,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -644,6 +647,9 @@ msgstr "" msgid "Drag to reposition" msgstr "Træk for at skifte position" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Redigér mærke \"%1\"..." @@ -660,7 +666,7 @@ msgstr "Redigér sporinformation..." msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Redigerer %n spor" @@ -783,6 +789,15 @@ msgstr "Filer" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Første niveau" @@ -1880,6 +1895,9 @@ msgstr "" msgid "Volume %1%" msgstr "Lydstyrke %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1965,7 +1983,7 @@ msgstr "Nul" msgid "[click to edit]" msgstr "[Klik for at redigere]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "tilføj %n sange" @@ -1985,7 +2003,7 @@ msgstr "flyt sange" msgid "options" msgstr "indstillinger" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "fjern %n sange" diff --git a/src/translations/de.po b/src/translations/de.po index 602f77444..d0acf6666 100644 --- a/src/translations/de.po +++ b/src/translations/de.po @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2010-08-09 23:36+0000\n" "Last-Translator: Markus Fuchs \n" "Language-Team: German \n" -"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de\n" "X-Launchpad-Export-Date: 2010-08-11 04:06+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -57,15 +57,15 @@ msgstr "%1 Stücke" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n fehlgeschlagen" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n konvertiert" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n verbleibend" @@ -597,6 +597,9 @@ msgstr "Gerät" msgid "Device Properties" msgstr "Geräteeinstellungen" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Geräteeinstellungen..." @@ -654,6 +657,9 @@ msgstr "Magnatune-Katalog wird geladen" msgid "Drag to reposition" msgstr "Klicken und ziehen um die Position zu ändern" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "%1 bearbeiten" @@ -670,7 +676,7 @@ msgstr "Metadaten bearbeiten..." msgid "Edit..." msgstr "Bearbeiten..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "%n Stücke bearbeiten" @@ -793,6 +799,15 @@ msgstr "Dateien" msgid "Files to transcode" msgstr "Zu konvertierende Dateien" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Erste Stufe" @@ -1899,6 +1914,9 @@ msgstr "Visualisierungs-Einstellungen" msgid "Volume %1%" msgstr "Lautstärke %1" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1993,7 +2011,7 @@ msgstr "Null" msgid "[click to edit]" msgstr "[zum Bearbeiten klicken]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "%n Stücke hinzufügen" @@ -2013,7 +2031,7 @@ msgstr "Stücke verschieben" msgid "options" msgstr "Einstellungen" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "%n Stücke entfernen" diff --git a/src/translations/el.po b/src/translations/el.po index a20bceb3b..b05e110a6 100644 --- a/src/translations/el.po +++ b/src/translations/el.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-09 22:33+0000\n" "Last-Translator: firewalker \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-08-11 04:06+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Language: el_GR\n" @@ -58,15 +58,15 @@ msgstr "%1 κομμάτια" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n απέτυχε" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n ολοκληρώθηκε" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n απομένει" @@ -599,6 +599,9 @@ msgstr "Συσκευή" msgid "Device Properties" msgstr "Ιδιότητες συσκευής" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Ιδιότητες συσκευής..." @@ -656,6 +659,9 @@ msgstr "Μεταφόρτωση καταλόγου του Magnatune" msgid "Drag to reposition" msgstr "Σύρετε για μετακίνηση" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Τροποποίηση ετικέτας \"%1\"..." @@ -672,7 +678,7 @@ msgstr "Τροποποίηση πληροφοριών κομματιού..." msgid "Edit..." msgstr "Επεξεργασία..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Τροποποίηση %n κομματιών" @@ -795,6 +801,15 @@ msgstr "Αρχεία" msgid "Files to transcode" msgstr "Αρχεία για επανακωδικοποίηση" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Πρώτο επίπεδο" @@ -1903,6 +1918,9 @@ msgstr "Ρυθμίσεις οπτικών εφέ" msgid "Volume %1%" msgstr "Ένταση %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1998,7 +2016,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[κλικ για τροποποίηση]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "προσθήκη %n τραγουδιών" @@ -2018,7 +2036,7 @@ msgstr "μετακίνηση τραγουδιών" msgid "options" msgstr "επιλογές" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "αφαίρεση %n τραγουδιών" diff --git a/src/translations/en_CA.po b/src/translations/en_CA.po index 721ebbd42..89dafbc25 100644 --- a/src/translations/en_CA.po +++ b/src/translations/en_CA.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-06-17 01:37+0000\n" "Last-Translator: David Sansome \n" "Language-Team: English (Canada) \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-06-18 03:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n failed" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n finished" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n remaining" @@ -588,6 +588,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -645,6 +648,9 @@ msgstr "Downloading Magnatune catalogue" msgid "Drag to reposition" msgstr "Drag to reposition" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Edit tag \"%1\"..." @@ -661,7 +667,7 @@ msgstr "Edit track information..." msgid "Edit..." msgstr "Edit..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editing %n tracks" @@ -783,6 +789,15 @@ msgstr "Files" msgid "Files to transcode" msgstr "Files to transcode" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "First level" @@ -1878,6 +1893,9 @@ msgstr "Visualisations Settings" msgid "Volume %1%" msgstr "Volume %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1963,7 +1981,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[click to edit]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "add %n songs" @@ -1983,7 +2001,7 @@ msgstr "move songs" msgid "options" msgstr "options" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "remove %n songs" diff --git a/src/translations/en_GB.po b/src/translations/en_GB.po index 2fc6dafe8..33ccd9ef3 100644 --- a/src/translations/en_GB.po +++ b/src/translations/en_GB.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-06-17 01:38+0000\n" "Last-Translator: David Sansome \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-06-18 03:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -586,6 +586,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -643,6 +646,9 @@ msgstr "" msgid "Drag to reposition" msgstr "Drag to reposition" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Edit tag \"%1\"..." @@ -659,7 +665,7 @@ msgstr "Edit track information..." msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editing %n tracks" @@ -781,6 +787,15 @@ msgstr "Files" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "First level" @@ -1875,6 +1890,9 @@ msgstr "Visualisations Settings" msgid "Volume %1%" msgstr "Volume %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1960,7 +1978,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[click to edit]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1980,7 +1998,7 @@ msgstr "" msgid "options" msgstr "options" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/es.po b/src/translations/es.po index 832dfb345..4c16738e1 100644 --- a/src/translations/es.po +++ b/src/translations/es.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-06 16:08+0000\n" "Last-Translator: Eduardo Durany Fernández \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-08-07 03:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Language: es_ES\n" @@ -57,15 +57,15 @@ msgstr "%1 pistas" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n completado(s)" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n pendiente(s)" @@ -598,6 +598,9 @@ msgstr "Dispositivo" msgid "Device Properties" msgstr "Propiedades del dispositivo" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Propiedades del dispositivo..." @@ -656,6 +659,9 @@ msgstr "Descargando el catálogo de Magnatune" msgid "Drag to reposition" msgstr "Arrastrar para reposicionar" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Editar etiqueta \"%1\"..." @@ -672,7 +678,7 @@ msgstr "Editar información de la pista..." msgid "Edit..." msgstr "Editar..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editando %n pistas" @@ -795,6 +801,15 @@ msgstr "Archivos" msgid "Files to transcode" msgstr "Archivos para convertir" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Primer nivel" @@ -1902,6 +1917,9 @@ msgstr "Preferencias de visualizaciones" msgid "Volume %1%" msgstr "Volumen %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1997,7 +2015,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[click para editar]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "agregar %n pistas" @@ -2017,7 +2035,7 @@ msgstr "mover pistas" msgid "options" msgstr "opciones" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "remover %n pistas" diff --git a/src/translations/fi.po b/src/translations/fi.po index d770660e2..aa72751ed 100644 --- a/src/translations/fi.po +++ b/src/translations/fi.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-07 10:10+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish \n" -"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" "X-Launchpad-Export-Date: 2010-08-08 04:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 kappaletta" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n epäonnistui" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n valmistui" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n jäljellä" @@ -586,6 +586,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -643,6 +646,9 @@ msgstr "" msgid "Drag to reposition" msgstr "" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "" @@ -659,7 +665,7 @@ msgstr "Muokkaa kappaleen tietoja..." msgid "Edit..." msgstr "Muokkaa..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -780,6 +786,15 @@ msgstr "Tiedostot" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "" @@ -1875,6 +1890,9 @@ msgstr "" msgid "Volume %1%" msgstr "" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1960,7 +1978,7 @@ msgstr "" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1980,7 +1998,7 @@ msgstr "" msgid "options" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/fr.po b/src/translations/fr.po index d6c5b7090..3aec081a3 100644 --- a/src/translations/fr.po +++ b/src/translations/fr.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 17:45+0000\n" "Last-Translator: Robin Wyss \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-08-11 04:06+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Language: fr_FR\n" @@ -57,15 +57,15 @@ msgstr "%1 pistes" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n échoué" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n terminé" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n manquant" @@ -591,6 +591,9 @@ msgstr "Périphérique" msgid "Device Properties" msgstr "Propriétés du périphérique" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Propriétés du périphérique..." @@ -648,6 +651,9 @@ msgstr "Téléchargement du catalogue Magnatune" msgid "Drag to reposition" msgstr "Déplacer pour repositionner" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Modifer le tag « %1 »..." @@ -664,7 +670,7 @@ msgstr "Modifier la description de la piste..." msgid "Edit..." msgstr "Éditer..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Éditer %n pistes" @@ -787,6 +793,15 @@ msgstr "Fichiers" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Premier niveau" @@ -1889,6 +1904,9 @@ msgstr "" msgid "Volume %1%" msgstr "Volume %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1976,7 +1994,7 @@ msgstr "Zéro" msgid "[click to edit]" msgstr "[cliquer pour modifier]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1996,7 +2014,7 @@ msgstr "déplacer les chansons" msgid "options" msgstr "options" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/gl.po b/src/translations/gl.po index b00a2a636..8b4325d16 100644 --- a/src/translations/gl.po +++ b/src/translations/gl.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-04-27 16:34+0000\n" "Last-Translator: andreout \n" "Language-Team: Galician \n" -"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" "X-Launchpad-Export-Date: 2010-04-28 03:53+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -586,6 +586,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -643,6 +646,9 @@ msgstr "" msgid "Drag to reposition" msgstr "Arraste para posicionar" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Editar a tag \"%1\"..." @@ -659,7 +665,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editando %n faixas" @@ -780,6 +786,15 @@ msgstr "" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "" @@ -1875,6 +1890,9 @@ msgstr "" msgid "Volume %1%" msgstr "Volume %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1960,7 +1978,7 @@ msgstr "" msgid "[click to edit]" msgstr "[clique para editar]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1980,7 +1998,7 @@ msgstr "" msgid "options" msgstr "Opzóns" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/hu.po b/src/translations/hu.po index 2770be7b7..078a2209e 100644 --- a/src/translations/hu.po +++ b/src/translations/hu.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-11 00:04+0000\n" "Last-Translator: ntomka \n" "Language-Team: Hungarian \n" -"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "X-Launchpad-Export-Date: 2010-08-11 04:06+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 szám" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n meghiúsult" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n befejezve" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n hátralévő" @@ -595,6 +595,9 @@ msgstr "Eszköz" msgid "Device Properties" msgstr "Eszköztulajdonságok" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Eszköztulajdonságok..." @@ -652,6 +655,9 @@ msgstr "Magnatune katalógus letöltése" msgid "Drag to reposition" msgstr "Fogja meg az áthelyezéshez" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "\"%1\" címke módosítása..." @@ -668,7 +674,7 @@ msgstr "Száminformáció szerkesztése..." msgid "Edit..." msgstr "Szerkesztés..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "%n szám szerkesztése" @@ -791,6 +797,15 @@ msgstr "Fájlok" msgid "Files to transcode" msgstr "Átkódolandó fájlok" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Első szinten" @@ -1894,6 +1909,9 @@ msgstr "Megjelenítések Beállításai" msgid "Volume %1%" msgstr "Hangerő %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1987,7 +2005,7 @@ msgstr "Nulla" msgid "[click to edit]" msgstr "[kattintson a szerkesztéshez]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "%n szám felvétele" @@ -2007,7 +2025,7 @@ msgstr "számok mozgatása" msgid "options" msgstr "beállítások" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "%n szám eltávolítása" diff --git a/src/translations/it.po b/src/translations/it.po index 3f691bfac..6fef4cfd9 100644 --- a/src/translations/it.po +++ b/src/translations/it.po @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 05:09+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "X-Launchpad-Export-Date: 2010-08-11 04:07+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -57,15 +57,15 @@ msgstr "%1 tracce" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n non riusciti" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n completati" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n rimanenti" @@ -602,6 +602,9 @@ msgstr "Dispositivo" msgid "Device Properties" msgstr "Proprietà del dispositivo" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Proprietà del dispositivo..." @@ -659,6 +662,9 @@ msgstr "Scaricamento catalogo Magnatune" msgid "Drag to reposition" msgstr "Trascina per riposizionare" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Modifica tag \"%1\"..." @@ -675,7 +681,7 @@ msgstr "Modifica informazioni traccia..." msgid "Edit..." msgstr "Modifica..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Modifica di %n tracce" @@ -798,6 +804,15 @@ msgstr "File" msgid "Files to transcode" msgstr "File da transcodificare" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Primo livello" @@ -1912,6 +1927,9 @@ msgstr "Impostazioni di visualizzazione" msgid "Volume %1%" msgstr "Volume %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -2006,7 +2024,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[clic per modificare]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "aggiungi %n brani" @@ -2026,7 +2044,7 @@ msgstr "sposta brani" msgid "options" msgstr "opzioni" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "rimuovi %n brani" diff --git a/src/translations/kk.po b/src/translations/kk.po index 2e575456a..2902d1b4e 100644 --- a/src/translations/kk.po +++ b/src/translations/kk.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-04-27 16:33+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Kazakh \n" -"Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: kk\n" "X-Launchpad-Export-Date: 2010-04-28 03:53+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -586,6 +586,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -643,6 +646,9 @@ msgstr "" msgid "Drag to reposition" msgstr "" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "" @@ -659,7 +665,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -780,6 +786,15 @@ msgstr "" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "" @@ -1875,6 +1890,9 @@ msgstr "" msgid "Volume %1%" msgstr "" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1960,7 +1978,7 @@ msgstr "Нөл" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1980,7 +1998,7 @@ msgstr "" msgid "options" msgstr "опциялар" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/lt.po b/src/translations/lt.po index 968974596..1b0e14629 100644 --- a/src/translations/lt.po +++ b/src/translations/lt.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-07-24 16:03+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Lithuanian \n" -"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" "X-Launchpad-Export-Date: 2010-07-25 04:26+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 takeliai" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -586,6 +586,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -643,6 +646,9 @@ msgstr "" msgid "Drag to reposition" msgstr "" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "" @@ -659,7 +665,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -780,6 +786,15 @@ msgstr "" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "" @@ -1873,6 +1888,9 @@ msgstr "" msgid "Volume %1%" msgstr "" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "" @@ -1958,7 +1976,7 @@ msgstr "" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1978,7 +1996,7 @@ msgstr "" msgid "options" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/nb.po b/src/translations/nb.po index c6aac6fea..13350bae5 100644 --- a/src/translations/nb.po +++ b/src/translations/nb.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-04 18:45+0000\n" "Last-Translator: Simen Heggestøyl \n" "Language-Team: Norwegian Bokmal \n" -"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" "X-Launchpad-Export-Date: 2010-08-05 03:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 spor" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n gjenstående" @@ -586,6 +586,9 @@ msgstr "Enhet" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -643,6 +646,9 @@ msgstr "" msgid "Drag to reposition" msgstr "Dra for å endre posisjon" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Endre merkelapp \"%1\"..." @@ -659,7 +665,7 @@ msgstr "Rediger informasjon om sporet..." msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Endrer %n spor" @@ -781,6 +787,15 @@ msgstr "Filer" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Første nivå" @@ -1877,6 +1892,9 @@ msgstr "" msgid "Volume %1%" msgstr "Volum %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1962,7 +1980,7 @@ msgstr "Null" msgid "[click to edit]" msgstr "[klikk for å endre]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1982,7 +2000,7 @@ msgstr "" msgid "options" msgstr "innstillinger" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/nl.po b/src/translations/nl.po index b0b48bd14..cd450549e 100644 --- a/src/translations/nl.po +++ b/src/translations/nl.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-08 15:32+0000\n" "Last-Translator: Ward \n" "Language-Team: Dutch \n" -"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" "X-Launchpad-Export-Date: 2010-08-09 03:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 tracks" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n mislukt" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n voltooid" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n te gaan" @@ -594,6 +594,9 @@ msgstr "Apparaat" msgid "Device Properties" msgstr "Apparaateigenschappen" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Apparaateigenschappen..." @@ -651,6 +654,9 @@ msgstr "Magnatune catalogus wordt gedownload" msgid "Drag to reposition" msgstr "Sleep om te verplaatsen" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Tag \"%1\" bewerken..." @@ -667,7 +673,7 @@ msgstr "Trackinformatie bewerken..." msgid "Edit..." msgstr "Bewerken..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "%n tracks bewerken" @@ -790,6 +796,15 @@ msgstr "Bestanden" msgid "Files to transcode" msgstr "Te converteren bestanden" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Eerste niveau" @@ -1900,6 +1915,9 @@ msgstr "Visualisatie-instellingen" msgid "Volume %1%" msgstr "Volume %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1994,7 +2012,7 @@ msgstr "Nul" msgid "[click to edit]" msgstr "[klik om te bewerken:]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "%n nummers toevoegen" @@ -2014,7 +2032,7 @@ msgstr "nummers verplaatsen" msgid "options" msgstr "opties" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "%n nummers verwijderen" diff --git a/src/translations/oc.po b/src/translations/oc.po index 680b7d9da..4d4dd9ac6 100644 --- a/src/translations/oc.po +++ b/src/translations/oc.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-05-21 01:01+0000\n" "Last-Translator: Cédric VALMARY (Tot en òc) \n" "Language-Team: Occitan (post 1500) \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-05-22 04:09+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -586,6 +586,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -643,6 +646,9 @@ msgstr "" msgid "Drag to reposition" msgstr "" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "" @@ -659,7 +665,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -780,6 +786,15 @@ msgstr "Fichièrs" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Primièr nivèl" @@ -1873,6 +1888,9 @@ msgstr "" msgid "Volume %1%" msgstr "Volum %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1958,7 +1976,7 @@ msgstr "Zèro" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1978,7 +1996,7 @@ msgstr "" msgid "options" msgstr "opcions" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/pl.po b/src/translations/pl.po index d1aeeba4b..3ab92a628 100644 --- a/src/translations/pl.po +++ b/src/translations/pl.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-07-27 10:29+0000\n" "Last-Translator: Hunab.cu \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-07-28 04:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Language: pl_PL\n" @@ -57,15 +57,15 @@ msgstr "%1 ścieżek" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n zawiodło" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n zakończone" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "pozostało %n" @@ -592,6 +592,9 @@ msgstr "Urządzenie" msgid "Device Properties" msgstr "Ustawienia Urządzenia" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Ustawienia urządzenia..." @@ -649,6 +652,9 @@ msgstr "Pobieranie katalogu Magnatune" msgid "Drag to reposition" msgstr "Przeciągnij aby zmienić pozycję" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Edytuj znacznik \"%1\"..." @@ -665,7 +671,7 @@ msgstr "Edytuj informacje o utworze..." msgid "Edit..." msgstr "Edytuj..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Edytowanie %n ścieżek" @@ -786,6 +792,15 @@ msgstr "Pliki" msgid "Files to transcode" msgstr "Pliki do transkodowania" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Pierwszy poziom" @@ -1886,6 +1901,9 @@ msgstr "Ustawienia wizualizacji" msgid "Volume %1%" msgstr "Głośność %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1972,7 +1990,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[kliknij aby edytować]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "dodaj %n utworów" @@ -1992,7 +2010,7 @@ msgstr "przenieś utwory" msgid "options" msgstr "opcje" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "usuń %n utworów" diff --git a/src/translations/pt.po b/src/translations/pt.po index 10ee6822f..9ae30a82e 100644 --- a/src/translations/pt.po +++ b/src/translations/pt.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 11:43+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" -"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "X-Launchpad-Export-Date: 2010-08-11 04:07+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 faixas" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n falha(s)" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n concluída(s)" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n restante(s)" @@ -596,6 +596,9 @@ msgstr "Dispositivo" msgid "Device Properties" msgstr "Propriedades do Dispositivo" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Propriedades do dispositivo..." @@ -653,6 +656,9 @@ msgstr "Transferindo Catálogo Magnatune" msgid "Drag to reposition" msgstr "Arraste para posicionar" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Editar marca \"%1\"..." @@ -669,7 +675,7 @@ msgstr "Editar a informação da faixa..." msgid "Edit..." msgstr "Editar..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editando %n faixas" @@ -791,6 +797,15 @@ msgstr "Ficheiros" msgid "Files to transcode" msgstr "Ficheiros a converter" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Primeiro Nível" @@ -1895,6 +1910,9 @@ msgstr "Definições das Visualizações" msgid "Volume %1%" msgstr "Volume %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1988,7 +2006,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[clique para editar]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "adicionar %n canções" @@ -2008,7 +2026,7 @@ msgstr "mover canções" msgid "options" msgstr "opções" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "remover %n canções" diff --git a/src/translations/pt_BR.po b/src/translations/pt_BR.po index 2f743b340..e16f841cc 100644 --- a/src/translations/pt_BR.po +++ b/src/translations/pt_BR.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-06-26 18:01+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Brazilian Portuguese \n" -"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "X-Launchpad-Export-Date: 2010-06-27 03:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 faixas" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n falhou" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n fizalizado" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n faltando" @@ -591,6 +591,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -648,6 +651,9 @@ msgstr "Baixando catálogo da Magnatune" msgid "Drag to reposition" msgstr "Arraste para reposicionar" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Editar marcador \"%1\"..." @@ -664,7 +670,7 @@ msgstr "Editar informações da faixa..." msgid "Edit..." msgstr "Editar..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Editando %n faixas" @@ -787,6 +793,15 @@ msgstr "Arquivos" msgid "Files to transcode" msgstr "Arquivos a transcodificar" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Primeiro nível" @@ -1886,6 +1901,9 @@ msgstr "Configurações de Visualizações" msgid "Volume %1%" msgstr "Volume %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1978,7 +1996,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[clique para editar]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "Adicionar %n músicas" @@ -1998,7 +2016,7 @@ msgstr "mover músicas" msgid "options" msgstr "opções" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "Remover %n músicas" diff --git a/src/translations/ro.po b/src/translations/ro.po index 3526d2992..2209277a5 100644 --- a/src/translations/ro.po +++ b/src/translations/ro.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-05-03 21:09+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Romanian \n" -"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" "X-Launchpad-Export-Date: 2010-05-04 03:52+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -586,6 +586,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -643,6 +646,9 @@ msgstr "" msgid "Drag to reposition" msgstr "Trage pentru a repoziționa" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "" @@ -659,7 +665,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -780,6 +786,15 @@ msgstr "Fișiere" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Primul nivel" @@ -1874,6 +1889,9 @@ msgstr "" msgid "Volume %1%" msgstr "Volum %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1959,7 +1977,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1979,7 +1997,7 @@ msgstr "" msgid "options" msgstr "opțiuni" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/ru.po b/src/translations/ru.po index fe25ea15c..f914face5 100644 --- a/src/translations/ru.po +++ b/src/translations/ru.po @@ -10,10 +10,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 06:34+0000\n" "Last-Translator: Malody \n" "Language-Team: Russian \n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" "X-Launchpad-Export-Date: 2010-08-11 04:07+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -55,15 +55,15 @@ msgstr "%1 композиций" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n с ошибкой" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n завершено" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n осталось" @@ -593,6 +593,9 @@ msgstr "Носитель" msgid "Device Properties" msgstr "Свойства носителя" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Свойства носителя..." @@ -650,6 +653,9 @@ msgstr "Скачать каталог Magnatune" msgid "Drag to reposition" msgstr "Тащите для перемещения" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Редактировать тег \"%1\"..." @@ -666,7 +672,7 @@ msgstr "Изменить информацию о композиции..." msgid "Edit..." msgstr "Изменить..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Редактирую %n треков" @@ -787,6 +793,15 @@ msgstr "Файлы" msgid "Files to transcode" msgstr "Файлы для перекодирования" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Первый уровень" @@ -1891,6 +1906,9 @@ msgstr "Настройки визуализации" msgid "Volume %1%" msgstr "Громкость %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1984,7 +2002,7 @@ msgstr "По-умолчанию" msgid "[click to edit]" msgstr "[щелкните, чтобы изменить]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "добавить %n композиций" @@ -2004,7 +2022,7 @@ msgstr "переместить композиции" msgid "options" msgstr "настройки" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "удалить %n композиций" diff --git a/src/translations/sk.po b/src/translations/sk.po index 817e315f0..7ea57a41c 100644 --- a/src/translations/sk.po +++ b/src/translations/sk.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-09 22:11+0000\n" "Last-Translator: DAG Software \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-08-11 04:07+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Language: sk_SK\n" @@ -57,15 +57,15 @@ msgstr "%1 skladieb" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n zlyhalo" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n dokončených" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n zostávajúcich" @@ -595,6 +595,9 @@ msgstr "Zariadenie" msgid "Device Properties" msgstr "Vlastnosti zariadenia" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Vlastnosti zariadenia..." @@ -652,6 +655,9 @@ msgstr "Sťahovanie Magnatune katalógu" msgid "Drag to reposition" msgstr "Pretiahnite na iné miesto" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Upraviť tag \"%1\"..." @@ -668,7 +674,7 @@ msgstr "Upravť informácie o skladbe..." msgid "Edit..." msgstr "Upraviť..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Upravovanie %n skladieb" @@ -791,6 +797,15 @@ msgstr "Súbory" msgid "Files to transcode" msgstr "Súbory na transkódovanie" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Prvá úroveň" @@ -1893,6 +1908,9 @@ msgstr "Nastavenia vizualizácií" msgid "Volume %1%" msgstr "Hlasitosť %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1985,7 +2003,7 @@ msgstr "Vynulovať" msgid "[click to edit]" msgstr "[kliknite pre úpravu]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "pridať %n piesní" @@ -2005,7 +2023,7 @@ msgstr "presunúť piesne" msgid "options" msgstr "možnosti" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "odstrániť %n piesní" diff --git a/src/translations/sl.po b/src/translations/sl.po index 5f1c58a78..16b0b79d7 100644 --- a/src/translations/sl.po +++ b/src/translations/sl.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-01 07:33+0000\n" "Last-Translator: R33D3M33R \n" "Language-Team: Slovenian \n" -"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" "X-Launchpad-Export-Date: 2010-08-02 04:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 skladb" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n spodletelih" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n končanih" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n preostaja" @@ -594,6 +594,9 @@ msgstr "Naprava" msgid "Device Properties" msgstr "Lastnosti naprave" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Lastnosti naprave..." @@ -651,6 +654,9 @@ msgstr "Poteka prenos Magnatune kataloga" msgid "Drag to reposition" msgstr "Povlecite za spremembo položaja" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Uredi značko \"%1\"" @@ -667,7 +673,7 @@ msgstr "Uredi informacije o skladbi..." msgid "Edit..." msgstr "Uredi..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Urejanje %n skladb" @@ -790,6 +796,15 @@ msgstr "Datoteke" msgid "Files to transcode" msgstr "Datoteke za prekodiranje" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Prva stopnja" @@ -1892,6 +1907,9 @@ msgstr "Nastavitve vizualizacije" msgid "Volume %1%" msgstr "Glasnost %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1985,7 +2003,7 @@ msgstr "Brez" msgid "[click to edit]" msgstr "[kliknite za urejanje]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "dodaj %n skladb" @@ -2005,7 +2023,7 @@ msgstr "premakni skladbe" msgid "options" msgstr "možnosti" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "odstrani %n skladb" diff --git a/src/translations/sr.po b/src/translations/sr.po index 1c6e23fb2..eca67a0a1 100644 --- a/src/translations/sr.po +++ b/src/translations/sr.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-07-24 16:03+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Serbian \n" -"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" "X-Launchpad-Export-Date: 2010-07-25 04:26+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 нумера" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n завршено" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n преостало" @@ -588,6 +588,9 @@ msgstr "Уређај" msgid "Device Properties" msgstr "Својства уређаја" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Својства уређаја..." @@ -645,6 +648,9 @@ msgstr "Преузми Магнатјунов каталог" msgid "Drag to reposition" msgstr "Одвуците га где желите" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Уреди ознаку \"%1\"..." @@ -661,7 +667,7 @@ msgstr "Уреди податке о нумери..." msgid "Edit..." msgstr "Уреди..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Уређивање %n нумера" @@ -783,6 +789,15 @@ msgstr "Фајлови" msgid "Files to transcode" msgstr "Фајлови за транскодирање" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Први ниво" @@ -1878,6 +1893,9 @@ msgstr "Подешавања визуелизација" msgid "Volume %1%" msgstr "" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "ВАВ" @@ -1965,7 +1983,7 @@ msgstr "Нулто" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "додај %n песама" @@ -1985,7 +2003,7 @@ msgstr "" msgid "options" msgstr "Опције" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "remove %n песама" diff --git a/src/translations/sv.po b/src/translations/sv.po index 4d33204e1..cf2dc9d7a 100644 --- a/src/translations/sv.po +++ b/src/translations/sv.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 16:24+0000\n" "Last-Translator: David Bengtsson \n" "Language-Team: Swedish \n" -"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" "X-Launchpad-Export-Date: 2010-08-11 04:07+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 spår" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n misslyckades" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n färdig" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n återstår" @@ -590,6 +590,9 @@ msgstr "Enhet" msgid "Device Properties" msgstr "Enhetsinställningar" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Enhetsinställningar..." @@ -647,6 +650,9 @@ msgstr "Hämtar katalog från Magnatune" msgid "Drag to reposition" msgstr "Dra för att ändra position" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Redigera tagg \"%1\"..." @@ -663,7 +669,7 @@ msgstr "Redigera spårinformation..." msgid "Edit..." msgstr "Redigera..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Redigerar %n spår" @@ -786,6 +792,15 @@ msgstr "Filer" msgid "Files to transcode" msgstr "Filer som skall omkodas" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Första nivån" @@ -1891,6 +1906,9 @@ msgstr "Inställningar för visualiseringar" msgid "Volume %1%" msgstr "Volym %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1980,7 +1998,7 @@ msgstr "Noll" msgid "[click to edit]" msgstr "[klicka för att redigera]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "Lägg till %n songer" @@ -2000,7 +2018,7 @@ msgstr "Flytta songer" msgid "options" msgstr "alternativ" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "Ta bort %n songer" diff --git a/src/translations/tr.po b/src/translations/tr.po index 85f7a03d2..2fd890ff5 100644 --- a/src/translations/tr.po +++ b/src/translations/tr.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-07-25 01:29+0000\n" "Last-Translator: ironic \n" "Language-Team: Turkish \n" -"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" "X-Launchpad-Export-Date: 2010-07-26 04:29+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 parça" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n başarısız" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n tamamlandı" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n kalan" @@ -586,6 +586,9 @@ msgstr "Aygıt" msgid "Device Properties" msgstr "Aygıt Özellikleri" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Aygıt özellikleri..." @@ -643,6 +646,9 @@ msgstr "Magnatune kataloğu indiriliyor" msgid "Drag to reposition" msgstr "Yeniden konumlandırmak için sürükleyin" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "\"%1\" etiketini düzenle..." @@ -659,7 +665,7 @@ msgstr "Parça bilgisini düzenle..." msgid "Edit..." msgstr "Düzenle..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -780,6 +786,15 @@ msgstr "Dosyalar" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "" @@ -1879,6 +1894,9 @@ msgstr "" msgid "Volume %1%" msgstr "" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1964,7 +1982,7 @@ msgstr "" msgid "[click to edit]" msgstr "[düzenlemek için tıklayın]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "%n şakıyı ekle" @@ -1984,7 +2002,7 @@ msgstr "Parçaları taşı" msgid "options" msgstr "seçenekler" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "%n şakıyı çıkart" diff --git a/src/translations/translations.pot b/src/translations/translations.pot index c691ddd48..e71018fbb 100644 --- a/src/translations/translations.pot +++ b/src/translations/translations.pot @@ -46,15 +46,15 @@ msgstr "" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -576,6 +576,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -633,6 +636,9 @@ msgstr "" msgid "Drag to reposition" msgstr "" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "" @@ -649,7 +655,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -770,6 +776,15 @@ msgstr "" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "" @@ -1863,6 +1878,9 @@ msgstr "" msgid "Volume %1%" msgstr "" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "" @@ -1948,7 +1966,7 @@ msgstr "" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1968,7 +1986,7 @@ msgstr "" msgid "options" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/uk.po b/src/translations/uk.po index d7d7b1eff..8a2d81573 100644 --- a/src/translations/uk.po +++ b/src/translations/uk.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-03 09:12+0000\n" "Last-Translator: Sergiy Gavrylov \n" "Language-Team: Ukrainian \n" -"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" "X-Launchpad-Export-Date: 2010-08-04 04:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 доріжок" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n з помилкою" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n завершено" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n залишилось" @@ -594,6 +594,9 @@ msgstr "Пристрій" msgid "Device Properties" msgstr "Налаштування пристрою" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "Налаштування пристрою..." @@ -651,6 +654,9 @@ msgstr "Завантаження каталогу Magnatune" msgid "Drag to reposition" msgstr "Перетягніть, щоб змінити розташування" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "Змінити позначку \"%1\"..." @@ -667,7 +673,7 @@ msgstr "Редагувати дані про доріжку..." msgid "Edit..." msgstr "Змінити..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "Редагування %n доріжок" @@ -789,6 +795,15 @@ msgstr "Файли" msgid "Files to transcode" msgstr "Файли для перекодування" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "Перший рівень" @@ -1890,6 +1905,9 @@ msgstr "Налаштування візуалізацій" msgid "Volume %1%" msgstr "Гучність %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1983,7 +2001,7 @@ msgstr "Zero" msgid "[click to edit]" msgstr "[клацніть, щоб змінити]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "додати %n композицій" @@ -2003,7 +2021,7 @@ msgstr "перемістити композиції" msgid "options" msgstr "параметри" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "вилучити %n композицій" diff --git a/src/translations/zh_CN.po b/src/translations/zh_CN.po index a5ad4548b..6262bd0b7 100644 --- a/src/translations/zh_CN.po +++ b/src/translations/zh_CN.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-06-07 01:43+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Chinese (Simplified) \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-06-08 03:51+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "" @@ -586,6 +586,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -643,6 +646,9 @@ msgstr "" msgid "Drag to reposition" msgstr "" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "" @@ -659,7 +665,7 @@ msgstr "" msgid "Edit..." msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "" @@ -780,6 +786,15 @@ msgstr "" msgid "Files to transcode" msgstr "" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "" @@ -1873,6 +1888,9 @@ msgstr "" msgid "Volume %1%" msgstr "" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "" @@ -1958,7 +1976,7 @@ msgstr "" msgid "[click to edit]" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "" @@ -1978,7 +1996,7 @@ msgstr "" msgid "options" msgstr "选项" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "" diff --git a/src/translations/zh_TW.po b/src/translations/zh_TW.po index 738840f4b..75bef47c1 100644 --- a/src/translations/zh_TW.po +++ b/src/translations/zh_TW.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-10 00:39+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Chinese (Traditional) \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 2010-08-11 04:07+0000\n" "X-Generator: Launchpad (build Unknown)\n" @@ -56,15 +56,15 @@ msgstr "%1 歌曲" msgid "%1: Wiimotedev module" msgstr "" -#, c-format, qt-plural-format +#, c-format msgid "%n failed" msgstr "%n 失敗的" -#, c-format, qt-plural-format +#, c-format msgid "%n finished" msgstr "%n 完成的" -#, c-format, qt-plural-format +#, c-format msgid "%n remaining" msgstr "%n 剩餘的" @@ -590,6 +590,9 @@ msgstr "" msgid "Device Properties" msgstr "" +msgid "Device name" +msgstr "" + msgid "Device properties..." msgstr "" @@ -647,6 +650,9 @@ msgstr "下載 Magnatune目錄" msgid "Drag to reposition" msgstr "拖曳以重新定位" +msgid "Drive letter" +msgstr "" + #, qt-format msgid "Edit tag \"%1\"..." msgstr "" @@ -663,7 +669,7 @@ msgstr "編輯歌曲資訊..." msgid "Edit..." msgstr "編輯..." -#, c-format, qt-plural-format +#, c-format msgid "Editing %n tracks" msgstr "編輯 %n 歌曲" @@ -784,6 +790,15 @@ msgstr "檔案" msgid "Files to transcode" msgstr "要轉換編碼的檔案" +msgid "Filesystem name" +msgstr "" + +msgid "Filesystem serial number" +msgstr "" + +msgid "Filesystem type" +msgstr "" + msgid "First level" msgstr "第一層次" @@ -1878,6 +1893,9 @@ msgstr "視覺化設定" msgid "Volume %1%" msgstr "音量 %1%" +msgid "Volume name" +msgstr "" + msgid "WAV" msgstr "WAV" @@ -1965,7 +1983,7 @@ msgstr "" msgid "[click to edit]" msgstr "[點擊以編輯]" -#, c-format, qt-plural-format +#, c-format msgid "add %n songs" msgstr "加入 %n 歌" @@ -1985,7 +2003,7 @@ msgstr "移動歌曲" msgid "options" msgstr "選項" -#, c-format, qt-plural-format +#, c-format msgid "remove %n songs" msgstr "移除 %n 歌"