new option for greying out deleted songs on startup

This commit is contained in:
Paweł Bara 2011-03-19 09:41:00 +00:00
parent 76b1af5415
commit 823f798451
57 changed files with 567 additions and 342 deletions

View File

@ -49,6 +49,7 @@
#include <QMutableListIterator> #include <QMutableListIterator>
#include <QSortFilterProxyModel> #include <QSortFilterProxyModel>
#include <QUndoStack> #include <QUndoStack>
#include <QtConcurrentRun>
#include <QtDebug> #include <QtDebug>
#include <boost/bind.hpp> #include <boost/bind.hpp>
@ -63,9 +64,14 @@ using boost::shared_ptr;
const char* Playlist::kRowsMimetype = "application/x-clementine-playlist-rows"; const char* Playlist::kRowsMimetype = "application/x-clementine-playlist-rows";
const char* Playlist::kPlayNowMimetype = "application/x-clementine-play-now"; const char* Playlist::kPlayNowMimetype = "application/x-clementine-play-now";
const int Playlist::kInvalidSongPriority = 200;
const QRgb Playlist::kInvalidSongColor = qRgb(0xC0, 0xC0, 0xC0);
const int Playlist::kDynamicHistoryPriority = 100; const int Playlist::kDynamicHistoryPriority = 100;
const QRgb Playlist::kDynamicHistoryColor = qRgb(0x80, 0x80, 0x80); const QRgb Playlist::kDynamicHistoryColor = qRgb(0x80, 0x80, 0x80);
const char* Playlist::kSettingsGroup = "Playlist";
Playlist::Playlist(PlaylistBackend* backend, Playlist::Playlist(PlaylistBackend* backend,
TaskManager* task_manager, TaskManager* task_manager,
LibraryBackend* library, LibraryBackend* library,
@ -1164,7 +1170,16 @@ void Playlist::ItemsLoaded() {
} }
} }
} }
emit RestoreFinished(); emit RestoreFinished();
QSettings s;
s.beginGroup(kSettingsGroup);
// should we gray out deleted songs asynchronously on startup?
if(s.value("greyoutdeleted", false).toBool()) {
QtConcurrent::run(this, &Playlist::InvalidateDeletedSongs);
}
} }
static bool DescendingIntLessThan(int a, int b) { static bool DescendingIntLessThan(int a, int b) {
@ -1557,3 +1572,44 @@ void Playlist::InformOfCurrentSongChange(const QModelIndex& top_left, const QMod
emit CurrentSongChanged(metadata); emit CurrentSongChanged(metadata);
} }
} }
void Playlist::InvalidateDeletedSongs() {
QList<int> invalidated_rows;
for (int row = 0; row < items_.count(); ++row) {
PlaylistItemPtr item = items_[row];
Song song = item->Metadata();
if(song.filetype() != Song::Type_Stream && !QFile::exists(song.filename())) {
// gray out the song if it's not there
item->SetForegroundColor(kInvalidSongPriority, kInvalidSongColor);
invalidated_rows.append(row);
}
}
ReloadItems(invalidated_rows);
}
bool Playlist::ApplyValidityOnCurrentSong(const QUrl& url, bool valid) {
PlaylistItemPtr current = current_item();
if(current) {
Song current_song = current->Metadata();
// if validity has changed, reload the item
if(current_song.filetype() != Song::Type_Stream &&
current_song.filename() == url.toLocalFile() &&
current_song.is_valid() != QFile::exists(current_song.filename())) {
ReloadItems(QList<int>() << current_row());
}
// gray out the song if it's now broken; otherwise undo the gray color
if(valid) {
current->RemoveForegroundColor(kInvalidSongPriority);
} else {
current->SetForegroundColor(kInvalidSongPriority, kInvalidSongColor);
}
}
return current;
}

View File

@ -121,6 +121,14 @@ class Playlist : public QAbstractListModel {
static const char* kRowsMimetype; static const char* kRowsMimetype;
static const char* kPlayNowMimetype; static const char* kPlayNowMimetype;
static const int kInvalidSongPriority;
static const QRgb kInvalidSongColor;
static const int kDynamicHistoryPriority;
static const QRgb kDynamicHistoryColor;
static const char* kSettingsGroup;
static bool CompareItems(int column, Qt::SortOrder order, static bool CompareItems(int column, Qt::SortOrder order,
PlaylistItemPtr a, PlaylistItemPtr b); PlaylistItemPtr a, PlaylistItemPtr b);
@ -188,6 +196,16 @@ class Playlist : public QAbstractListModel {
// Removes items with given indices from the playlist. This operation is not undoable. // Removes items with given indices from the playlist. This operation is not undoable.
void RemoveItemsWithoutUndo (const QList<int>& indices); void RemoveItemsWithoutUndo (const QList<int>& indices);
// If this playlist contains the current item, this method will apply the "valid" flag on it.
// If the "valid" flag is false, the song will be greyed out. Otherwise the grey color will
// be undone.
// If the song is a local file and it's valid but non existent or invalid but exists, the
// song will be reloaded to even out the situation because obviously something has changed.
// This returns true if this playlist had current item when the method was invoked.
bool ApplyValidityOnCurrentSong(const QUrl& url, bool valid);
// Grays out and reloads all deleted songs in this playlist.
void InvalidateDeletedSongs();
void StopAfter(int row); void StopAfter(int row);
void ReloadItems(const QList<int>& rows); void ReloadItems(const QList<int>& rows);
@ -324,9 +342,6 @@ class Playlist : public QAbstractListModel {
QUndoStack* undo_stack_; QUndoStack* undo_stack_;
static const int kDynamicHistoryPriority;
static const QRgb kDynamicHistoryColor;
smart_playlists::GeneratorPtr dynamic_playlist_; smart_playlists::GeneratorPtr dynamic_playlist_;
ColumnAlignmentMap column_alignments_; ColumnAlignmentMap column_alignments_;

View File

@ -30,9 +30,6 @@
using smart_playlists::GeneratorPtr; using smart_playlists::GeneratorPtr;
const int PlaylistManagerInterface::kInvalidSongPriority = 200;
const QRgb PlaylistManagerInterface::kInvalidSongColor = qRgb(0xC0, 0xC0, 0xC0);
PlaylistManager::PlaylistManager(TaskManager* task_manager, QObject *parent) PlaylistManager::PlaylistManager(TaskManager* task_manager, QObject *parent)
: PlaylistManagerInterface(parent), : PlaylistManagerInterface(parent),
task_manager_(task_manager), task_manager_(task_manager),
@ -336,27 +333,14 @@ void PlaylistManager::PlaySmartPlaylist(GeneratorPtr generator, bool as_new, boo
// When Player has processed the new song chosen by the user... // When Player has processed the new song chosen by the user...
void PlaylistManager::SongChangeRequestProcessed(const QUrl& url, bool valid) { void PlaylistManager::SongChangeRequestProcessed(const QUrl& url, bool valid) {
foreach(Playlist* playlist, GetAllPlaylists()) { foreach(Playlist* playlist, GetAllPlaylists()) {
PlaylistItemPtr current = playlist->current_item(); if(playlist->ApplyValidityOnCurrentSong(url, valid)) {
return;
if(current) {
Song current_song = current->Metadata();
// if validity has changed, reload the item
if(current_song.filetype() != Song::Type_Stream &&
current_song.filename() == url.toLocalFile() &&
current_song.is_valid() != QFile::exists(current_song.filename())) {
playlist->ReloadItems(QList<int>() << playlist->current_row());
}
// gray out the song if it's now broken; otherwise undo the gray color
if(valid) {
current->RemoveForegroundColor(kInvalidSongPriority);
} else {
current->SetForegroundColor(kInvalidSongPriority, kInvalidSongColor);
}
// we have at most one current item
break;
} }
} }
} }
void PlaylistManager::InvalidateDeletedSongs() {
foreach(Playlist* playlist, GetAllPlaylists()) {
playlist->InvalidateDeletedSongs();
}
}

View File

@ -52,6 +52,8 @@ public:
// Returns the collection of playlists managed by this PlaylistManager. // Returns the collection of playlists managed by this PlaylistManager.
virtual QList<Playlist*> GetAllPlaylists() const = 0; virtual QList<Playlist*> GetAllPlaylists() const = 0;
// Grays out and reloads all deleted songs in all playlists.
virtual void InvalidateDeletedSongs() = 0;
virtual const QItemSelection& selection(int id) const = 0; virtual const QItemSelection& selection(int id) const = 0;
virtual const QItemSelection& current_selection() const = 0; virtual const QItemSelection& current_selection() const = 0;
@ -115,10 +117,6 @@ signals:
void PlaylistChanged(Playlist* playlist); void PlaylistChanged(Playlist* playlist);
void EditingFinished(const QModelIndex& index); void EditingFinished(const QModelIndex& index);
void PlayRequested(const QModelIndex& index); void PlayRequested(const QModelIndex& index);
protected:
static const int kInvalidSongPriority;
static const QRgb kInvalidSongColor;
}; };
class PlaylistManager : public PlaylistManagerInterface { class PlaylistManager : public PlaylistManagerInterface {
@ -137,6 +135,8 @@ public:
// Returns the collection of playlists managed by this PlaylistManager. // Returns the collection of playlists managed by this PlaylistManager.
QList<Playlist*> GetAllPlaylists() const; QList<Playlist*> GetAllPlaylists() const;
// Grays out and reloads all deleted songs in all playlists.
void InvalidateDeletedSongs();
const QItemSelection& selection(int id) const; const QItemSelection& selection(int id) const;
const QItemSelection& current_selection() const { return selection(current_id()); } const QItemSelection& current_selection() const { return selection(current_id()); }

View File

@ -35,7 +35,6 @@
#include <math.h> #include <math.h>
const char* PlaylistView::kSettingsGroup = "Playlist";
const int PlaylistView::kStateVersion = 3; const int PlaylistView::kStateVersion = 3;
const int PlaylistView::kGlowIntensitySteps = 24; const int PlaylistView::kGlowIntensitySteps = 24;
const int PlaylistView::kAutoscrollGraceTimeout = 60; // seconds const int PlaylistView::kAutoscrollGraceTimeout = 60; // seconds
@ -194,7 +193,7 @@ void PlaylistView::setModel(QAbstractItemModel *m) {
void PlaylistView::LoadGeometry() { void PlaylistView::LoadGeometry() {
QSettings settings; QSettings settings;
settings.beginGroup(kSettingsGroup); settings.beginGroup(Playlist::kSettingsGroup);
if (!header_->restoreState(settings.value("state").toByteArray())) { if (!header_->restoreState(settings.value("state").toByteArray())) {
header_->HideSection(Playlist::Column_Disc); header_->HideSection(Playlist::Column_Disc);
@ -253,7 +252,7 @@ void PlaylistView::SaveGeometry() {
return; return;
QSettings settings; QSettings settings;
settings.beginGroup(kSettingsGroup); settings.beginGroup(Playlist::kSettingsGroup);
settings.setValue("state", header_->saveState()); settings.setValue("state", header_->saveState());
settings.setValue("state_version", kStateVersion); settings.setValue("state_version", kStateVersion);
} }
@ -814,7 +813,7 @@ void PlaylistView::PlaylistDestroyed() {
void PlaylistView::ReloadSettings() { void PlaylistView::ReloadSettings() {
QSettings s; QSettings s;
s.beginGroup(kSettingsGroup); s.beginGroup(Playlist::kSettingsGroup);
glow_enabled_ = s.value("glow_effect", true).toBool(); glow_enabled_ = s.value("glow_effect", true).toBool();
header_->SetStretchEnabled(s.value("stretch", true).toBool()); header_->SetStretchEnabled(s.value("stretch", true).toBool());
@ -838,7 +837,7 @@ void PlaylistView::SaveSettings() {
return; return;
QSettings s; QSettings s;
s.beginGroup(kSettingsGroup); s.beginGroup(Playlist::kSettingsGroup);
s.setValue("glow_effect", glow_enabled_); s.setValue("glow_effect", glow_enabled_);
s.setValue("stretch", header_->is_stretch_enabled()); s.setValue("stretch", header_->is_stretch_enabled());
s.setValue("column_alignments", QVariant::fromValue(playlist_->column_alignments())); s.setValue("column_alignments", QVariant::fromValue(playlist_->column_alignments()));

View File

@ -59,7 +59,6 @@ class PlaylistView : public QTreeView {
public: public:
PlaylistView(QWidget* parent = 0); PlaylistView(QWidget* parent = 0);
static const char* kSettingsGroup;
static const int kStateVersion; static const int kStateVersion;
void SetItemDelegates(LibraryBackend* backend); void SetItemDelegates(LibraryBackend* backend);

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-12-22 17:44+0000\n" "PO-Revision-Date: 2010-12-22 17:44+0000\n"
"Last-Translator: Ali AlNoaimi <the-ghost@live.com>\n" "Last-Translator: Ali AlNoaimi <the-ghost@live.com>\n"
"Language-Team: Arabic <ar@li.org>\n" "Language-Team: Arabic <ar@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: ar\n"
msgid " ms" msgid " ms"
msgstr "" msgstr ""
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "" msgstr ""
@ -1136,6 +1136,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2744,7 +2747,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "أضِف %n أغاني\\أغنية" msgstr "أضِف %n أغاني\\أغنية"
@ -2803,7 +2806,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "الخيارات" msgstr "الخيارات"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "أزِل %n أغاني\\أغنية" msgstr "أزِل %n أغاني\\أغنية"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-12-05 20:18+0000\n" "PO-Revision-Date: 2010-12-05 20:18+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n" "Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Belarusian <be@li.org>\n" "Language-Team: Belarusian <be@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: be\n"
msgid " ms" msgid " ms"
msgstr " мс" msgstr " мс"
@ -82,15 +82,15 @@ msgstr "%1 кампазіцый"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: модуль Wiimotedev" msgstr "%1: модуль Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n з памылкай" msgstr "%n з памылкай"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n завершана" msgstr "%n завершана"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n засталося" msgstr "%n засталося"
@ -1150,6 +1150,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2758,7 +2761,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2817,7 +2820,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-14 13:03+0000\n" "PO-Revision-Date: 2011-03-14 13:03+0000\n"
"Last-Translator: George Karavasilev <kokoto_java@yahoo.com>\n" "Last-Translator: George Karavasilev <kokoto_java@yahoo.com>\n"
"Language-Team: Bulgarian <bg@li.org>\n" "Language-Team: Bulgarian <bg@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: bg\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 песни"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1:Wiimotedev модул" msgstr "%1:Wiimotedev модул"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n неуспешно" msgstr "%n неуспешно"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n завършено" msgstr "%n завършено"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n оставащо" msgstr "%n оставащо"
@ -1163,6 +1163,9 @@ msgstr "Потребителско име в Google"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Успешно изтегляне на %1 от общо %2 обложки (неуспешно на %3)" msgstr "Успешно изтегляне на %1 от общо %2 обложки (неуспешно на %3)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Групиране на Библиотеката по..." msgstr "Групиране на Библиотеката по..."
@ -2825,7 +2828,7 @@ msgstr "Я-А"
msgid "Zero" msgid "Zero"
msgstr "Нула" msgstr "Нула"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "добавете %n песни" msgstr "добавете %n песни"
@ -2884,7 +2887,7 @@ msgstr "вкл."
msgid "options" msgid "options"
msgstr "опции" msgstr "опции"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "премахване на %n песни" msgstr "премахване на %n песни"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-06 17:45+0000\n" "PO-Revision-Date: 2011-02-06 17:45+0000\n"
"Last-Translator: Gwenn M <Unknown>\n" "Last-Translator: Gwenn M <Unknown>\n"
"Language-Team: Breton <br@li.org>\n" "Language-Team: Breton <br@li.org>\n"
"Language: br\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: br\n"
msgid " ms" msgid " ms"
msgstr " me" msgstr " me"
@ -82,15 +82,15 @@ msgstr "%1 roudenn"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1 : enlugellad wiimotedev" msgstr "%1 : enlugellad wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n c'hwitet" msgstr "%n c'hwitet"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n echuet" msgstr "%n echuet"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n a chom" msgstr "%n a chom"
@ -1159,6 +1159,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2768,7 +2771,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2827,7 +2830,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 15:43+0000\n" "PO-Revision-Date: 2011-02-15 15:43+0000\n"
"Last-Translator: David Planella <david.planella@ubuntu.com>\n" "Last-Translator: David Planella <david.planella@ubuntu.com>\n"
"Language-Team: Catalan <ca@li.org>\n" "Language-Team: Catalan <ca@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: ca\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 temes"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1 mòdul Wiimotedev" msgstr "%1 mòdul Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n han fallat" msgstr "%n han fallat"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n han acabat" msgstr "%n han acabat"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n restants" msgstr "%n restants"
@ -158,8 +158,8 @@ msgid ""
"<p>If you surround sections of text that contain a token with curly-braces, " "<p>If you surround sections of text that contain a token with curly-braces, "
"that section will be hidden if the token is empty.</p>" "that section will be hidden if the token is empty.</p>"
msgstr "" msgstr ""
"<p>Les fitxes de reemplaçament comencen amb %, per exemple: %artist %album %" "<p>Les fitxes de reemplaçament comencen amb %, per exemple: %artist %album "
"title </p>\n" "%title </p>\n"
"\n" "\n"
"<p>Si demarqueu entre claus una secció de text que contingui una fitxa de " "<p>Si demarqueu entre claus una secció de text que contingui una fitxa de "
"remplaçament, aquesta secció no es mostrarà si la fitxa de remplaçament es " "remplaçament, aquesta secció no es mostrarà si la fitxa de remplaçament es "
@ -1167,6 +1167,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "S'han trobat %1 caràtules de %2 (%3 han fallat)" msgstr "S'han trobat %1 caràtules de %2 (%3 han fallat)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Agrupar Colecció per..." msgstr "Agrupar Colecció per..."
@ -2797,7 +2800,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "Zero" msgstr "Zero"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "afegeix %n cançons" msgstr "afegeix %n cançons"
@ -2856,7 +2859,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "opcions" msgstr "opcions"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "elimina %n cançons" msgstr "elimina %n cançons"

View File

@ -12,12 +12,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-15 20:19+0000\n" "PO-Revision-Date: 2011-03-15 20:19+0000\n"
"Last-Translator: fri <pavelfric@seznam.cz>\n" "Last-Translator: fri <pavelfric@seznam.cz>\n"
"Language-Team: Czech <kde-i18n-doc@kde.org>\n" "Language-Team: Czech <kde-i18n-doc@kde.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-16 05:03+0000\n" "X-Launchpad-Export-Date: 2011-03-16 05:03+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: cs\n"
"X-Language: cs_CZ\n" "X-Language: cs_CZ\n"
msgid " ms" msgid " ms"
@ -84,15 +84,15 @@ msgstr "%1 skladeb"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: modul Wiimotedev" msgstr "%1: modul Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "nepodařilo se %n" msgstr "nepodařilo se %n"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "dokončeno %n" msgstr "dokončeno %n"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "zůstávají %n" msgstr "zůstávají %n"
@ -1164,6 +1164,9 @@ msgstr "Uživatelské jméno u Google"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Získáno %1 obalů z %2 (%3 nezískáno)" msgstr "Získáno %1 obalů z %2 (%3 nezískáno)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Roztřídit hudební knihovnu podle..." msgstr "Roztřídit hudební knihovnu podle..."
@ -2816,7 +2819,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Vynulovat" msgstr "Vynulovat"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "přidat %n písniček" msgstr "přidat %n písniček"
@ -2875,7 +2878,7 @@ msgstr "Na"
msgid "options" msgid "options"
msgstr "Volby" msgstr "Volby"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "odstranit %n písniček" msgstr "odstranit %n písniček"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-08-26 13:46+0000\n" "PO-Revision-Date: 2010-08-26 13:46+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Welsh <cy@li.org>\n" "Language-Team: Welsh <cy@li.org>\n"
"Language: cy\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: cy\n"
msgid " ms" msgid " ms"
msgstr "" msgstr ""
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "" msgstr ""
@ -1136,6 +1136,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2744,7 +2747,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2803,7 +2806,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -12,12 +12,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:39+0000\n" "PO-Revision-Date: 2011-02-15 16:39+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n" "Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Danish <kde-i18n-doc@kde.org>\n" "Language-Team: Danish <kde-i18n-doc@kde.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: da\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -83,15 +83,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "" msgstr ""
@ -1139,6 +1139,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Gruppér bibliotek efter..." msgstr "Gruppér bibliotek efter..."
@ -2749,7 +2752,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "Nul" msgstr "Nul"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "tilføj %n sange" msgstr "tilføj %n sange"
@ -2808,7 +2811,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "indstillinger" msgstr "indstillinger"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "fjern %n sange" msgstr "fjern %n sange"

View File

@ -12,12 +12,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-07 19:31+0000\n" "PO-Revision-Date: 2011-03-07 19:31+0000\n"
"Last-Translator: David Dusanic <ivanovnegro@googlemail.com>\n" "Last-Translator: David Dusanic <ivanovnegro@googlemail.com>\n"
"Language-Team: German <de@li.org>\n" "Language-Team: German <de@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: de\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -83,15 +83,15 @@ msgstr "%1 Stücke"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev-Modul" msgstr "%1: Wiimotedev-Modul"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n fehlgeschlagen" msgstr "%n fehlgeschlagen"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n konvertiert" msgstr "%n konvertiert"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n verbleibend" msgstr "%n verbleibend"
@ -1166,6 +1166,9 @@ msgstr "Google Benutzername"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "%1 Cover von %2 wurden gefunden (%3 fehlgeschlagen)" msgstr "%1 Cover von %2 wurden gefunden (%3 fehlgeschlagen)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Gruppieren nach..." msgstr "Gruppieren nach..."
@ -2824,7 +2827,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Null" msgstr "Null"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "%n Stücke hinzufügen" msgstr "%n Stücke hinzufügen"
@ -2883,7 +2886,7 @@ msgstr "auf"
msgid "options" msgid "options"
msgstr "Einstellungen" msgstr "Einstellungen"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "%n Stücke entfernen" msgstr "%n Stücke entfernen"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-15 17:25+0000\n" "PO-Revision-Date: 2011-03-15 17:25+0000\n"
"Last-Translator: firewalker <Unknown>\n" "Last-Translator: firewalker <Unknown>\n"
"Language-Team: <en@li.org>\n" "Language-Team: <en@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-16 05:03+0000\n" "X-Launchpad-Export-Date: 2011-03-16 05:03+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: \n"
"X-Language: el_GR\n" "X-Language: el_GR\n"
"X-Source-Language: en\n" "X-Source-Language: en\n"
@ -84,15 +84,15 @@ msgstr "%1 κομμάτια"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Άρθρωμα Wiimotedev" msgstr "%1: Άρθρωμα Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n απέτυχε" msgstr "%n απέτυχε"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n ολοκληρώθηκε" msgstr "%n ολοκληρώθηκε"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n απομένει" msgstr "%n απομένει"
@ -1179,6 +1179,9 @@ msgstr "Όνομα χρήστη Google"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Έγινε λήψη %1 εξώφυλλων από τα %2 (%3 απέτυχαν)" msgstr "Έγινε λήψη %1 εξώφυλλων από τα %2 (%3 απέτυχαν)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Ομαδοποίηση βιβλιοθήκης κατά..." msgstr "Ομαδοποίηση βιβλιοθήκης κατά..."
@ -2849,7 +2852,7 @@ msgstr "Ω-Α"
msgid "Zero" msgid "Zero"
msgstr "Zero" msgstr "Zero"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "προσθήκη %n τραγουδιών" msgstr "προσθήκη %n τραγουδιών"
@ -2908,7 +2911,7 @@ msgstr "σε"
msgid "options" msgid "options"
msgstr "επιλογές" msgstr "επιλογές"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "αφαίρεση %n τραγουδιών" msgstr "αφαίρεση %n τραγουδιών"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-12-25 04:49+0000\n" "PO-Revision-Date: 2010-12-25 04:49+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n" "Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: \n"
msgid " ms" msgid " ms"
msgstr "" msgstr ""
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "" msgstr ""
@ -1136,6 +1136,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2744,7 +2747,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2803,7 +2806,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:06+0000\n" "PO-Revision-Date: 2011-02-15 16:06+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n" "Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: English (Canada) <en_CA@li.org>\n" "Language-Team: English (Canada) <en_CA@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:14+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:14+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: \n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n failed" msgstr "%n failed"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n finished" msgstr "%n finished"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n remaining" msgstr "%n remaining"
@ -1139,6 +1139,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Group Library by..." msgstr "Group Library by..."
@ -2748,7 +2751,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "Zero" msgstr "Zero"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "add %n songs" msgstr "add %n songs"
@ -2807,7 +2810,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "options" msgstr "options"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "remove %n songs" msgstr "remove %n songs"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:29+0000\n" "PO-Revision-Date: 2011-02-15 16:29+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n" "Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: \n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "" msgstr ""
@ -1137,6 +1137,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Group Library by..." msgstr "Group Library by..."
@ -2745,7 +2748,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "Zero" msgstr "Zero"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2804,7 +2807,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "options" msgstr "options"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-11-03 02:08+0000\n" "PO-Revision-Date: 2010-11-03 02:08+0000\n"
"Last-Translator: darkweasel <darkweasel@euirc.eu>\n" "Last-Translator: darkweasel <darkweasel@euirc.eu>\n"
"Language-Team: Esperanto <eo@li.org>\n" "Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: eo\n"
msgid " ms" msgid " ms"
msgstr "" msgstr ""
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n malsukcesis" msgstr "%n malsukcesis"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n finiĝis" msgstr "%n finiĝis"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n restas" msgstr "%n restas"
@ -1136,6 +1136,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2744,7 +2747,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2803,7 +2806,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-13 23:10+0000\n" "PO-Revision-Date: 2011-03-13 23:10+0000\n"
"Last-Translator: Fitoschido <fitoschido@gmail.com>\n" "Last-Translator: Fitoschido <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: \n"
"X-Language: es_ES\n" "X-Language: es_ES\n"
msgid " ms" msgid " ms"
@ -83,15 +83,15 @@ msgstr "%1 pistas"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Módulo Wiimotedev" msgstr "%1: Módulo Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n falló" msgstr "%n falló"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n completado(s)" msgstr "%n completado(s)"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n pendiente(s)" msgstr "%n pendiente(s)"
@ -649,8 +649,8 @@ msgid ""
"Could not create the GStreamer element \"%1\" - make sure you have all the " "Could not create the GStreamer element \"%1\" - make sure you have all the "
"required GStreamer plugins installed" "required GStreamer plugins installed"
msgstr "" msgstr ""
"No se pudo crear el elemento «%1» de GStreamer. Asegúrese de tener instalados " "No se pudo crear el elemento «%1» de GStreamer. Asegúrese de tener "
"todos los complementos necesarios de GStreamer." "instalados todos los complementos necesarios de GStreamer."
#, qt-format #, qt-format
msgid "" msgid ""
@ -1176,6 +1176,9 @@ msgstr "Nombre de usuario de Google"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Se obtuvieron %1 portadas de %2 (%3 fallaron)" msgstr "Se obtuvieron %1 portadas de %2 (%3 fallaron)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Agrupar Colección por..." msgstr "Agrupar Colección por..."
@ -2840,7 +2843,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Cero" msgstr "Cero"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "añadir %n pistas" msgstr "añadir %n pistas"
@ -2899,7 +2902,7 @@ msgstr "en"
msgid "options" msgid "options"
msgstr "opciones" msgstr "opciones"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "remover %n pistas" msgstr "remover %n pistas"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-02 09:32+0000\n" "PO-Revision-Date: 2011-03-02 09:32+0000\n"
"Last-Translator: lyyser <Unknown>\n" "Last-Translator: lyyser <Unknown>\n"
"Language-Team: Estonian <et@li.org>\n" "Language-Team: Estonian <et@li.org>\n"
"Language: et\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: et\n"
msgid " ms" msgid " ms"
msgstr " msek" msgstr " msek"
@ -82,15 +82,15 @@ msgstr "%1 pala"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: moodul Wiimotedev" msgstr "%1: moodul Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n ebaõnnestus" msgstr "%n ebaõnnestus"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n lõpetatud" msgstr "%n lõpetatud"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "jäänud %n" msgstr "jäänud %n"
@ -1137,6 +1137,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2745,7 +2748,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Null" msgstr "Null"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "lisa %n laulu" msgstr "lisa %n laulu"
@ -2804,7 +2807,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "valikud" msgstr "valikud"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-12-05 20:21+0000\n" "PO-Revision-Date: 2010-12-05 20:21+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n" "Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Basque <eu@li.org>\n" "Language-Team: Basque <eu@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: eu\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "" msgstr ""
@ -1136,6 +1136,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2744,7 +2747,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2803,7 +2806,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-08 16:22+0000\n" "PO-Revision-Date: 2011-03-08 16:22+0000\n"
"Last-Translator: Jiri Grönroos <Unknown>\n" "Last-Translator: Jiri Grönroos <Unknown>\n"
"Language-Team: Finnish <fi@li.org>\n" "Language-Team: Finnish <fi@li.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: fi\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 kappaletta"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n epäonnistui" msgstr "%n epäonnistui"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n valmistui" msgstr "%n valmistui"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n jäljellä" msgstr "%n jäljellä"
@ -1142,6 +1142,9 @@ msgstr "Google-käyttäjätunnus"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Löydetty %1 / %2 kansikuvaa (%3 epäonnistui)" msgstr "Löydetty %1 / %2 kansikuvaa (%3 epäonnistui)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2769,7 +2772,7 @@ msgstr "Ö-A"
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "lisää %n kappaletta" msgstr "lisää %n kappaletta"
@ -2828,7 +2831,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "poista %n kappaletta" msgstr "poista %n kappaletta"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-15 14:44+0000\n" "PO-Revision-Date: 2011-03-15 14:44+0000\n"
"Last-Translator: Arno <arnaud.bienner@gmail.com>\n" "Last-Translator: Arno <arnaud.bienner@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-16 05:03+0000\n" "X-Launchpad-Export-Date: 2011-03-16 05:03+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: \n"
"X-Language: fr_FR\n" "X-Language: fr_FR\n"
msgid " ms" msgid " ms"
@ -83,15 +83,15 @@ msgstr "%1 pistes"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1 : Module wiimotedev" msgstr "%1 : Module wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n échoué" msgstr "%n échoué"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n terminé" msgstr "%n terminé"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n manquant" msgstr "%n manquant"
@ -1179,6 +1179,9 @@ msgstr "Nom d'utilisateur Google"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "%1 jaquettes récupérées sur %2 (%3 échecs)" msgstr "%1 jaquettes récupérées sur %2 (%3 échecs)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Grouper la Bibliothèque par..." msgstr "Grouper la Bibliothèque par..."
@ -2829,9 +2832,9 @@ msgid ""
"for automatic tag fetching. Try installing the 'gstreamer-plugins-bad' " "for automatic tag fetching. Try installing the 'gstreamer-plugins-bad' "
"package." "package."
msgstr "" msgstr ""
"GStreamer ne possède pas le module externe « ofa », nécessaire pour compléter " "GStreamer ne possède pas le module externe « ofa », nécessaire pour "
"les tags automatiquement. Essayez d'installer le paquet « gstreamer-plugins-" "compléter les tags automatiquement. Essayez d'installer le paquet « "
"bad »." "gstreamer-plugins-bad »."
msgid "Your library is empty!" msgid "Your library is empty!"
msgstr "Votre bibliothèque est vide !" msgstr "Votre bibliothèque est vide !"
@ -2849,7 +2852,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Zéro" msgstr "Zéro"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "ajouter %n morceaux" msgstr "ajouter %n morceaux"
@ -2908,7 +2911,7 @@ msgstr "sur"
msgid "options" msgid "options"
msgstr "options" msgstr "options"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "enlever %n morceaux" msgstr "enlever %n morceaux"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-14 15:16+0000\n" "PO-Revision-Date: 2011-03-14 15:16+0000\n"
"Last-Translator: adrian <Unknown>\n" "Last-Translator: adrian <Unknown>\n"
"Language-Team: Galician <gl@li.org>\n" "Language-Team: Galician <gl@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: gl\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 canción"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Módulo Wiimotedev" msgstr "%1: Módulo Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n fallou" msgstr "%n fallou"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n completado(s)" msgstr "%n completado(s)"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n restante" msgstr "%n restante"
@ -158,8 +158,8 @@ msgid ""
"<p>If you surround sections of text that contain a token with curly-braces, " "<p>If you surround sections of text that contain a token with curly-braces, "
"that section will be hidden if the token is empty.</p>" "that section will be hidden if the token is empty.</p>"
msgstr "" msgstr ""
"<p>As fichas de substitución comezan con %, por exemplo: %artist %album %" "<p>As fichas de substitución comezan con %, por exemplo: %artist %album "
"title </p>\n" "%title </p>\n"
"<p>Se rodea seccións de texto que conteñen unha ficha de substitución, esa " "<p>Se rodea seccións de texto que conteñen unha ficha de substitución, esa "
"sección non se amosará se a ficha de substitución estará baleira.</p>" "sección non se amosará se a ficha de substitución estará baleira.</p>"
@ -1144,6 +1144,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2753,7 +2756,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2812,7 +2815,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "Opzóns" msgstr "Opzóns"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 15:55+0000\n" "PO-Revision-Date: 2011-02-15 15:55+0000\n"
"Last-Translator: Ofir Klinger <klinger.ofir@gmail.com>\n" "Last-Translator: Ofir Klinger <klinger.ofir@gmail.com>\n"
"Language-Team: Hebrew <he@li.org>\n" "Language-Team: Hebrew <he@li.org>\n"
"Language: he\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: he\n"
msgid " ms" msgid " ms"
msgstr " מילי־שניות" msgstr " מילי־שניות"
@ -82,15 +82,15 @@ msgstr "%1 רצועות"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: המודול Wiimotedev" msgstr "%1: המודול Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n נכשל" msgstr "%n נכשל"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n הסתיים" msgstr "%n הסתיים"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n נותר" msgstr "%n נותר"
@ -1153,6 +1153,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "נמצאו %1 עטיפות מתוך %2 (%3 נכשלו)" msgstr "נמצאו %1 עטיפות מתוך %2 (%3 נכשלו)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "קבץ ספרייה על־פי..." msgstr "קבץ ספרייה על־פי..."
@ -2781,7 +2784,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "אפס" msgstr "אפס"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "הוסף %n שירים" msgstr "הוסף %n שירים"
@ -2840,7 +2843,7 @@ msgstr "ב־"
msgid "options" msgid "options"
msgstr "אפשרויות" msgstr "אפשרויות"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "הסרת %n שירים" msgstr "הסרת %n שירים"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-11-22 19:42+0000\n" "PO-Revision-Date: 2010-11-22 19:42+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Hindi <hi@li.org>\n" "Language-Team: Hindi <hi@li.org>\n"
"Language: hi\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: hi\n"
msgid " ms" msgid " ms"
msgstr "" msgstr ""
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "" msgstr ""
@ -1136,6 +1136,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2744,7 +2747,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2803,7 +2806,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,13 +11,13 @@ msgstr ""
"PO-Revision-Date: 2011-03-14 10:39+0000\n" "PO-Revision-Date: 2011-03-14 10:39+0000\n"
"Last-Translator: gogo <trebelnik2@gmail.com>\n" "Last-Translator: gogo <trebelnik2@gmail.com>\n"
"Language-Team: Croatian <hr@li.org>\n" "Language-Team: Croatian <hr@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"X-Poedit-Country: CROATIA\n" "X-Poedit-Country: CROATIA\n"
"Language: hr\n"
"X-Poedit-Language: Croatian\n" "X-Poedit-Language: Croatian\n"
msgid " ms" msgid " ms"
@ -84,15 +84,15 @@ msgstr "%1 pjesme"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev module" msgstr "%1: Wiimotedev module"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n nije uspjelo" msgstr "%n nije uspjelo"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n završeno" msgstr "%n završeno"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n preostalo" msgstr "%n preostalo"
@ -1166,6 +1166,9 @@ msgstr "Google korisničko ime"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Dohvaćen %1 omot iz %2 (%3 nedohvaćeno)" msgstr "Dohvaćen %1 omot iz %2 (%3 nedohvaćeno)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Grupiraj zbirku po..." msgstr "Grupiraj zbirku po..."
@ -2816,7 +2819,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Nula" msgstr "Nula"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "dodajte %n pjesama" msgstr "dodajte %n pjesama"
@ -2875,7 +2878,7 @@ msgstr "na"
msgid "options" msgid "options"
msgstr "opcije" msgstr "opcije"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "premjesti %n pjesama" msgstr "premjesti %n pjesama"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-15 20:36+0000\n" "PO-Revision-Date: 2011-03-15 20:36+0000\n"
"Last-Translator: Gergely Szarka <szarka.honved@gmail.com>\n" "Last-Translator: Gergely Szarka <szarka.honved@gmail.com>\n"
"Language-Team: Hungarian <hu@li.org>\n" "Language-Team: Hungarian <hu@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-16 05:03+0000\n" "X-Launchpad-Export-Date: 2011-03-16 05:03+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: hu\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 szám"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev modul" msgstr "%1: Wiimotedev modul"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n meghiúsult" msgstr "%n meghiúsult"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n befejezve" msgstr "%n befejezve"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n hátralévő" msgstr "%n hátralévő"
@ -1167,6 +1167,9 @@ msgstr "Google felhasználónév"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "%1 borító a %2-ból/ből letöltve (%3 sikertelen)" msgstr "%1 borító a %2-ból/ből letöltve (%3 sikertelen)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Zenetár csoportosítása..." msgstr "Zenetár csoportosítása..."
@ -2821,7 +2824,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Nulla" msgstr "Nulla"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "%n szám felvétele" msgstr "%n szám felvétele"
@ -2880,7 +2883,7 @@ msgstr "ezen"
msgid "options" msgid "options"
msgstr "beállítások" msgstr "beállítások"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "%n szám eltávolítása" msgstr "%n szám eltávolítása"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-14 09:09+0000\n" "PO-Revision-Date: 2011-03-14 09:09+0000\n"
"Last-Translator: Helgi Páll Jónsson <Unknown>\n" "Last-Translator: Helgi Páll Jónsson <Unknown>\n"
"Language-Team: Icelandic <is@li.org>\n" "Language-Team: Icelandic <is@li.org>\n"
"Language: is\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:11+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: is\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 lög"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Wiimodedev eining" msgstr "%1: Wiimodedev eining"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n misheppnaðist" msgstr "%n misheppnaðist"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n lokið" msgstr "%n lokið"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n eftir" msgstr "%n eftir"
@ -1136,6 +1136,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2744,7 +2747,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2803,7 +2806,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -12,12 +12,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-16 08:23+0000\n" "PO-Revision-Date: 2011-03-16 08:23+0000\n"
"Last-Translator: Guybrush88 <Unknown>\n" "Last-Translator: Guybrush88 <Unknown>\n"
"Language-Team: Italian <kde-i18n-it@kde.org>\n" "Language-Team: Italian <kde-i18n-it@kde.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-17 05:14+0000\n" "X-Launchpad-Export-Date: 2011-03-17 05:14+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: it\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -83,15 +83,15 @@ msgstr "%1 tracce"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: modulo Wiimotedev" msgstr "%1: modulo Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n non riusciti" msgstr "%n non riusciti"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n completati" msgstr "%n completati"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n rimanenti" msgstr "%n rimanenti"
@ -1171,6 +1171,9 @@ msgstr "Nome utente di Google"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Ottenute %1 copertine di %2 (%3 non riuscito)" msgstr "Ottenute %1 copertine di %2 (%3 non riuscito)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Raggruppa raccolta per..." msgstr "Raggruppa raccolta per..."
@ -2836,7 +2839,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Zero" msgstr "Zero"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "aggiungi %n brani" msgstr "aggiungi %n brani"
@ -2895,7 +2898,7 @@ msgstr "il"
msgid "options" msgid "options"
msgstr "opzioni" msgstr "opzioni"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "rimuovi %n brani" msgstr "rimuovi %n brani"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 15:49+0000\n" "PO-Revision-Date: 2011-02-15 15:49+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n" "Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: \n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 個のトラック"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev モジュール" msgstr "%1: Wiimotedev モジュール"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n 曲失敗しました" msgstr "%n 曲失敗しました"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n が完了しました" msgstr "%n が完了しました"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n 曲残っています" msgstr "%n 曲残っています"
@ -1157,6 +1157,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "%2 中 %1 個のカバーを取得しました (%3 個失敗しました)" msgstr "%2 中 %1 個のカバーを取得しました (%3 個失敗しました)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "ライブラリのグループ化..." msgstr "ライブラリのグループ化..."
@ -2795,7 +2798,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Zero" msgstr "Zero"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "%n 曲追加" msgstr "%n 曲追加"
@ -2854,7 +2857,7 @@ msgstr "on"
msgid "options" msgid "options"
msgstr "オプション" msgstr "オプション"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "%n 曲削除" msgstr "%n 曲削除"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2010-12-22 18:08+0000\n" "PO-Revision-Date: 2010-12-22 18:08+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n" "Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Kazakh <kk@li.org>\n" "Language-Team: Kazakh <kk@li.org>\n"
"Language: kk\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: kk\n"
msgid " ms" msgid " ms"
msgstr " мсек" msgstr " мсек"
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "" msgstr ""
@ -1136,6 +1136,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2744,7 +2747,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "Нөл" msgstr "Нөл"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2803,7 +2806,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "опциялар" msgstr "опциялар"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,13 +11,13 @@ msgstr ""
"PO-Revision-Date: 2011-03-06 15:16+0000\n" "PO-Revision-Date: 2011-03-06 15:16+0000\n"
"Last-Translator: Liudas Ališauskas <liudas.alisauskas@gmail.com>\n" "Last-Translator: Liudas Ališauskas <liudas.alisauskas@gmail.com>\n"
"Language-Team: Lithuanian <liudas@akmc.lt>\n" "Language-Team: Lithuanian <liudas@akmc.lt>\n"
"Language: lt\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"X-Poedit-Country: LITHUANIA\n" "X-Poedit-Country: LITHUANIA\n"
"Language: lt\n"
"X-Poedit-Language: Lithuanian\n" "X-Poedit-Language: Lithuanian\n"
"X-Poedit-SourceCharset: utf-8\n" "X-Poedit-SourceCharset: utf-8\n"
@ -85,15 +85,15 @@ msgstr "%1 takeliai"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Wii pulto modulis" msgstr "%1: Wii pulto modulis"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n nepavyko" msgstr "%n nepavyko"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n baigta" msgstr "%n baigta"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n pervardinama" msgstr "%n pervardinama"
@ -1164,6 +1164,9 @@ msgstr "Google vartotojo vardas"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "VaizdasGauta %1 viršelių iš %2 (%3 nepavyko)" msgstr "VaizdasGauta %1 viršelių iš %2 (%3 nepavyko)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Grupuoti fonoteką pagal..." msgstr "Grupuoti fonoteką pagal..."
@ -2808,7 +2811,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Nulis" msgstr "Nulis"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "pridėti %n dainų" msgstr "pridėti %n dainų"
@ -2867,7 +2870,7 @@ msgstr "iš"
msgid "options" msgid "options"
msgstr "parinktys" msgstr "parinktys"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "pašalinti %n dainas" msgstr "pašalinti %n dainas"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-01-10 15:29+0000\n" "PO-Revision-Date: 2011-01-10 15:29+0000\n"
"Last-Translator: uGGA <Unknown>\n" "Last-Translator: uGGA <Unknown>\n"
"Language-Team: uGGa\n" "Language-Team: uGGa\n"
"Language: lv\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: lv\n"
msgid " ms" msgid " ms"
msgstr "" msgstr ""
@ -82,15 +82,15 @@ msgstr "%1 dziesmas"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "" msgstr ""
@ -1136,6 +1136,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2744,7 +2747,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2803,7 +2806,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "opcijas" msgstr "opcijas"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:31+0000\n" "PO-Revision-Date: 2011-02-15 16:31+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n" "Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Norwegian Bokmal <nb@li.org>\n" "Language-Team: Norwegian Bokmal <nb@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: nb\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 spor"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n ferdige" msgstr "%n ferdige"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n gjenstående" msgstr "%n gjenstående"
@ -1148,6 +1148,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Gruppér biblioteket etter..." msgstr "Gruppér biblioteket etter..."
@ -2757,7 +2760,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "Null" msgstr "Null"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2816,7 +2819,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "innstillinger" msgstr "innstillinger"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-14 07:53+0000\n" "PO-Revision-Date: 2011-03-14 07:53+0000\n"
"Last-Translator: Cugel <hulshof@gmail.com>\n" "Last-Translator: Cugel <hulshof@gmail.com>\n"
"Language-Team: Dutch <nl@li.org>\n" "Language-Team: Dutch <nl@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:10+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: nl\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 nummers"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev module" msgstr "%1: Wiimotedev module"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n mislukt" msgstr "%n mislukt"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n voltooid" msgstr "%n voltooid"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n te gaan" msgstr "%n te gaan"
@ -1169,6 +1169,9 @@ msgstr "Google gebruikersnaam"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Heb %1 hoezen van de %2 opgehaald (%3 mislukt)" msgstr "Heb %1 hoezen van de %2 opgehaald (%3 mislukt)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Bibliotheek groeperen op..." msgstr "Bibliotheek groeperen op..."
@ -2835,7 +2838,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Nul" msgstr "Nul"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "%n nummers toevoegen" msgstr "%n nummers toevoegen"
@ -2894,7 +2897,7 @@ msgstr "aan"
msgid "options" msgid "options"
msgstr "opties" msgstr "opties"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "%n nummers verwijderen" msgstr "%n nummers verwijderen"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:28+0000\n" "PO-Revision-Date: 2011-02-15 16:28+0000\n"
"Last-Translator: Cédric VALMARY (Tot en òc) <cvalmary@yahoo.fr>\n" "Last-Translator: Cédric VALMARY (Tot en òc) <cvalmary@yahoo.fr>\n"
"Language-Team: Occitan (post 1500) <oc@li.org>\n" "Language-Team: Occitan (post 1500) <oc@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: \n"
msgid " ms" msgid " ms"
msgstr " mseg" msgstr " mseg"
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "" msgstr ""
@ -1136,6 +1136,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2744,7 +2747,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "Zèro" msgstr "Zèro"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2803,7 +2806,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "opcions" msgstr "opcions"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-09 07:23+0000\n" "PO-Revision-Date: 2011-03-09 07:23+0000\n"
"Last-Translator: Harmanpreet Singh Gill <Unknown>\n" "Last-Translator: Harmanpreet Singh Gill <Unknown>\n"
"Language-Team: Punjabi <pa@li.org>\n" "Language-Team: Punjabi <pa@li.org>\n"
"Language: pa\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: pa\n"
msgid " ms" msgid " ms"
msgstr "" msgstr ""
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "" msgstr ""
@ -1136,6 +1136,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2744,7 +2747,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2803,7 +2806,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -10,12 +10,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-16 18:05+0000\n" "PO-Revision-Date: 2011-03-16 18:05+0000\n"
"Last-Translator: Paweł Bara <Unknown>\n" "Last-Translator: Paweł Bara <Unknown>\n"
"Language-Team: Polish <>\n" "Language-Team: Polish <>\n"
"Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-17 05:14+0000\n" "X-Launchpad-Export-Date: 2011-03-17 05:14+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: \n"
"X-Language: pl_PL\n" "X-Language: pl_PL\n"
msgid " ms" msgid " ms"
@ -82,15 +82,15 @@ msgstr "%1 ścieżek"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: moduł Wiimotedev" msgstr "%1: moduł Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n nieudane" msgstr "%n nieudane"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n zakończone" msgstr "%n zakończone"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "pozostało %n" msgstr "pozostało %n"
@ -1165,6 +1165,9 @@ msgstr "Nazwa użytkownika Google"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Uzyskano %1 okładek z %2 (%3 nieudane)" msgstr "Uzyskano %1 okładek z %2 (%3 nieudane)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Grupuj bibliotekę według..." msgstr "Grupuj bibliotekę według..."
@ -2823,7 +2826,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Zero" msgstr "Zero"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "dodaj %n utworów" msgstr "dodaj %n utworów"
@ -2882,7 +2885,7 @@ msgstr "w dniu"
msgid "options" msgid "options"
msgstr "opcje" msgstr "opcje"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "usuń %n utworów" msgstr "usuń %n utworów"

View File

@ -11,13 +11,13 @@ msgstr ""
"PO-Revision-Date: 2011-03-16 10:39+0000\n" "PO-Revision-Date: 2011-03-16 10:39+0000\n"
"Last-Translator: Sérgio Marques <Unknown>\n" "Last-Translator: Sérgio Marques <Unknown>\n"
"Language-Team: \n" "Language-Team: \n"
"Language: pt\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-17 05:14+0000\n" "X-Launchpad-Export-Date: 2011-03-17 05:14+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"X-Poedit-Country: PORTUGAL\n" "X-Poedit-Country: PORTUGAL\n"
"Language: pt\n"
"X-Poedit-Language: Portuguese\n" "X-Poedit-Language: Portuguese\n"
msgid " ms" msgid " ms"
@ -84,15 +84,15 @@ msgstr "%1 músicas"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Módulo Wiimotedev" msgstr "%1: Módulo Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n falha(s)" msgstr "%n falha(s)"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n concluída(s)" msgstr "%n concluída(s)"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n por converter" msgstr "%n por converter"
@ -1169,6 +1169,9 @@ msgstr "Nome de utilizador Google"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Foram obtidas %1 de %2 capa(s) (não foram obtidas %3)" msgstr "Foram obtidas %1 de %2 capa(s) (não foram obtidas %3)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Agrupar coleção por..." msgstr "Agrupar coleção por..."
@ -2830,7 +2833,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Zero" msgstr "Zero"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "adicionar %n músicas" msgstr "adicionar %n músicas"
@ -2889,7 +2892,7 @@ msgstr "em"
msgid "options" msgid "options"
msgstr "opções" msgstr "opções"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "remover %n músicas" msgstr "remover %n músicas"

View File

@ -12,12 +12,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 15:51+0000\n" "PO-Revision-Date: 2011-02-15 15:51+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n" "Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n" "Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: pt_BR\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -83,15 +83,15 @@ msgstr "%1 faixas"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Modulo do dispositivo Wiimote" msgstr "%1: Modulo do dispositivo Wiimote"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n falhou" msgstr "%n falhou"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n finalizado" msgstr "%n finalizado"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n faltando" msgstr "%n faltando"
@ -1162,6 +1162,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Conseguiu %1 capa(s) de %2 (%3 falharam)" msgstr "Conseguiu %1 capa(s) de %2 (%3 falharam)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Organizar Biblioteca por..." msgstr "Organizar Biblioteca por..."
@ -2814,7 +2817,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Zero" msgstr "Zero"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "Adicionar %n músicas" msgstr "Adicionar %n músicas"
@ -2873,7 +2876,7 @@ msgstr "ligado"
msgid "options" msgid "options"
msgstr "opções" msgstr "opções"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "Remover %n músicas" msgstr "Remover %n músicas"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:14+0000\n" "PO-Revision-Date: 2011-02-15 16:14+0000\n"
"Last-Translator: Daniel Șerbănescu <cyber19rider@gmail.com>\n" "Last-Translator: Daniel Șerbănescu <cyber19rider@gmail.com>\n"
"Language-Team: Romanian <ro@li.org>\n" "Language-Team: Romanian <ro@li.org>\n"
"Language: ro\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: ro\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n eșuat" msgstr "%n eșuat"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n finalizat" msgstr "%n finalizat"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n rămas" msgstr "%n rămas"
@ -1140,6 +1140,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2748,7 +2751,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "Zero" msgstr "Zero"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2807,7 +2810,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "opțiuni" msgstr "opțiuni"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "elimină %n piese" msgstr "elimină %n piese"

View File

@ -10,12 +10,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-09 09:33+0000\n" "PO-Revision-Date: 2011-03-09 09:33+0000\n"
"Last-Translator: Pavel Maleev <Unknown>\n" "Last-Translator: Pavel Maleev <Unknown>\n"
"Language-Team: Russian <kde-russian@lists.kde.ru>\n" "Language-Team: Russian <kde-russian@lists.kde.ru>\n"
"Language: ru\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: ru\n"
msgid " ms" msgid " ms"
msgstr " мс" msgstr " мс"
@ -81,15 +81,15 @@ msgstr "%1 композиций"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: модуль Wiimotedev" msgstr "%1: модуль Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n с ошибкой" msgstr "%n с ошибкой"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n завершено" msgstr "%n завершено"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n осталось" msgstr "%n осталось"
@ -1160,6 +1160,9 @@ msgstr "Имя пользователя Google"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Получено %1 обложек из %2 (%3 загрузить не удалось)" msgstr "Получено %1 обложек из %2 (%3 загрузить не удалось)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Сортировать коллекцию по..." msgstr "Сортировать коллекцию по..."
@ -2808,7 +2811,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "По-умолчанию" msgstr "По-умолчанию"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "добавить %n композиций" msgstr "добавить %n композиций"
@ -2867,7 +2870,7 @@ msgstr "на"
msgid "options" msgid "options"
msgstr "настройки" msgstr "настройки"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "удалить %n композиций" msgstr "удалить %n композиций"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-14 13:35+0000\n" "PO-Revision-Date: 2011-03-14 13:35+0000\n"
"Last-Translator: DAG Software <Unknown>\n" "Last-Translator: DAG Software <Unknown>\n"
"Language-Team: \n" "Language-Team: \n"
"Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: \n"
"X-Language: sk_SK\n" "X-Language: sk_SK\n"
msgid " ms" msgid " ms"
@ -83,15 +83,15 @@ msgstr "%1 skladieb"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev modul" msgstr "%1: Wiimotedev modul"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n zlyhalo" msgstr "%n zlyhalo"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n dokončených" msgstr "%n dokončených"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n zostávajúcich" msgstr "%n zostávajúcich"
@ -1161,6 +1161,9 @@ msgstr "Google prihlasovacie meno"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Získaných %1 obalov z %2 (%3 zlyhalo)" msgstr "Získaných %1 obalov z %2 (%3 zlyhalo)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Zoraďovanie zbierky podľa..." msgstr "Zoraďovanie zbierky podľa..."
@ -2813,7 +2816,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Vynulovať" msgstr "Vynulovať"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "pridať %n piesní" msgstr "pridať %n piesní"
@ -2872,7 +2875,7 @@ msgstr "na"
msgid "options" msgid "options"
msgstr "možnosti" msgstr "možnosti"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "odstrániť %n piesní" msgstr "odstrániť %n piesní"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-28 12:17+0000\n" "PO-Revision-Date: 2011-02-28 12:17+0000\n"
"Last-Translator: R33D3M33R <Unknown>\n" "Last-Translator: R33D3M33R <Unknown>\n"
"Language-Team: Slovenian <sl@li.org>\n" "Language-Team: Slovenian <sl@li.org>\n"
"Language: sl\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: sl\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 skladb"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Wimotedev modul" msgstr "%1: Wimotedev modul"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n spodletelih" msgstr "%n spodletelih"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n končanih" msgstr "%n končanih"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n preostaja" msgstr "%n preostaja"
@ -1163,6 +1163,9 @@ msgstr "Google uporabniško ime"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Pridobljenih je bilo %1 od %2 ovitkov (%3 spodletelih)" msgstr "Pridobljenih je bilo %1 od %2 ovitkov (%3 spodletelih)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Združi knjižnico po ..." msgstr "Združi knjižnico po ..."
@ -2813,7 +2816,7 @@ msgstr "Ž-A"
msgid "Zero" msgid "Zero"
msgstr "Brez" msgstr "Brez"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "dodaj %n skladb" msgstr "dodaj %n skladb"
@ -2872,7 +2875,7 @@ msgstr "v"
msgid "options" msgid "options"
msgstr "možnosti" msgstr "možnosti"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "odstrani %n skladb" msgstr "odstrani %n skladb"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:28+0000\n" "PO-Revision-Date: 2011-02-15 16:28+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n" "Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Serbian <sr@li.org>\n" "Language-Team: Serbian <sr@li.org>\n"
"Language: sr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:12+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: sr\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 нумера"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n завршено" msgstr "%n завршено"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n преостало" msgstr "%n преостало"
@ -1139,6 +1139,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Групиши библиотеку по" msgstr "Групиши библиотеку по"
@ -2750,7 +2753,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "Нулто" msgstr "Нулто"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "додај %n песама" msgstr "додај %n песама"
@ -2809,7 +2812,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "Опције" msgstr "Опције"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "remove %n песама" msgstr "remove %n песама"

View File

@ -12,12 +12,12 @@ msgstr ""
"Last-Translator: Fredrik Andersson <fredrikfritte@gmail.com>\n" "Last-Translator: Fredrik Andersson <fredrikfritte@gmail.com>\n"
"Language-Team: Launchpad Swedish Translators <lp-l10n-sv@lists.launchpad." "Language-Team: Launchpad Swedish Translators <lp-l10n-sv@lists.launchpad."
"net>\n" "net>\n"
"Language: sv\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: sv\n"
"X-Poedit-Language: Swedish\n" "X-Poedit-Language: Swedish\n"
msgid " ms" msgid " ms"
@ -84,15 +84,15 @@ msgstr "%1 spår"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev-modul" msgstr "%1: Wiimotedev-modul"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n misslyckades" msgstr "%n misslyckades"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n färdig" msgstr "%n färdig"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n återstår" msgstr "%n återstår"
@ -1166,6 +1166,9 @@ msgstr "Google-användarnamn"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Erhöll %1 omslagsbild utav %2 (%3 misslyckades)" msgstr "Erhöll %1 omslagsbild utav %2 (%3 misslyckades)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Gruppera biblioteket efter..." msgstr "Gruppera biblioteket efter..."
@ -2811,7 +2814,7 @@ msgstr "Ö-A"
msgid "Zero" msgid "Zero"
msgstr "Noll" msgstr "Noll"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "lägg till %n låtar" msgstr "lägg till %n låtar"
@ -2870,7 +2873,7 @@ msgstr "på"
msgid "options" msgid "options"
msgstr "alternativ" msgstr "alternativ"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "ta bort %n låtar" msgstr "ta bort %n låtar"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-16 14:36+0000\n" "PO-Revision-Date: 2011-03-16 14:36+0000\n"
"Last-Translator: Ekrem Kocadere <ekocadere@hotmail.com>\n" "Last-Translator: Ekrem Kocadere <ekocadere@hotmail.com>\n"
"Language-Team: Turkish <tr@li.org>\n" "Language-Team: Turkish <tr@li.org>\n"
"Language: tr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-17 05:15+0000\n" "X-Launchpad-Export-Date: 2011-03-17 05:15+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: tr\n"
msgid " ms" msgid " ms"
msgstr " ms" msgstr " ms"
@ -82,15 +82,15 @@ msgstr "%1 parça"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev modülü" msgstr "%1: Wiimotedev modülü"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n başarısız" msgstr "%n başarısız"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n tamamlandı" msgstr "%n tamamlandı"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n kalan" msgstr "%n kalan"
@ -1160,6 +1160,9 @@ msgstr "Google kullanıcı adı"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "%2 kapaktan %1 tanesi alındı (%3 tanesi başarısız)" msgstr "%2 kapaktan %1 tanesi alındı (%3 tanesi başarısız)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Kütüpheneyi şuna göre grupla..." msgstr "Kütüpheneyi şuna göre grupla..."
@ -2807,7 +2810,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Sıfır" msgstr "Sıfır"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "%n şarkıyı ekle" msgstr "%n şarkıyı ekle"
@ -2866,7 +2869,7 @@ msgstr "açık"
msgid "options" msgid "options"
msgstr "seçenekler" msgstr "seçenekler"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "%n şarkıyı kaldır" msgstr "%n şarkıyı kaldır"

View File

@ -72,15 +72,15 @@ msgstr ""
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "" msgstr ""
@ -1126,6 +1126,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2734,7 +2737,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "" msgstr ""
@ -2793,7 +2796,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "" msgstr ""

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-14 20:58+0000\n" "PO-Revision-Date: 2011-03-14 20:58+0000\n"
"Last-Translator: Sergii Galashyn <Unknown>\n" "Last-Translator: Sergii Galashyn <Unknown>\n"
"Language-Team: Ukrainian <uk@li.org>\n" "Language-Team: Ukrainian <uk@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:13+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: uk\n"
msgid " ms" msgid " ms"
msgstr " мс" msgstr " мс"
@ -82,15 +82,15 @@ msgstr "%1 доріжок"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Модуль Wiimotedev" msgstr "%1: Модуль Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n з помилкою" msgstr "%n з помилкою"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n завершено" msgstr "%n завершено"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n залишилось" msgstr "%n залишилось"
@ -1161,6 +1161,9 @@ msgstr "Ім’я користувача Google"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Отримано %1 обкладинок з %2 (%3 не вдалось)" msgstr "Отримано %1 обкладинок з %2 (%3 не вдалось)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Групувати фонотеку за..." msgstr "Групувати фонотеку за..."
@ -2808,7 +2811,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Zero" msgstr "Zero"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "додати %n композицій" msgstr "додати %n композицій"
@ -2867,7 +2870,7 @@ msgstr "на"
msgid "options" msgid "options"
msgstr "параметри" msgstr "параметри"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "вилучити %n композицій" msgstr "вилучити %n композицій"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-15 09:42+0000\n" "PO-Revision-Date: 2011-03-15 09:42+0000\n"
"Last-Translator: Lê Trường An <xinemdungkhoc1@gmail.com>\n" "Last-Translator: Lê Trường An <xinemdungkhoc1@gmail.com>\n"
"Language-Team: Vietnamese <vi@li.org>\n" "Language-Team: Vietnamese <vi@li.org>\n"
"Language: vi\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-16 05:03+0000\n" "X-Launchpad-Export-Date: 2011-03-16 05:03+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: vi\n"
msgid " ms" msgid " ms"
msgstr " mili giây" msgstr " mili giây"
@ -82,15 +82,15 @@ msgstr "%1 track"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: mô-đun Wiimotedev" msgstr "%1: mô-đun Wiimotedev"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n thất bại" msgstr "%n thất bại"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n kết thúc" msgstr "%n kết thúc"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "còn lại %n" msgstr "còn lại %n"
@ -1162,6 +1162,9 @@ msgstr "Tên người dùng Google"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "Đã tải %1 ảnh bìa trong số %2 (thất bại %3)" msgstr "Đã tải %1 ảnh bìa trong số %2 (thất bại %3)"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "Nhóm Thư viện theo..." msgstr "Nhóm Thư viện theo..."
@ -2811,7 +2814,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "Zero" msgstr "Zero"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "và %n bài hát" msgstr "và %n bài hát"
@ -2870,7 +2873,7 @@ msgstr "on"
msgid "options" msgid "options"
msgstr "options" msgstr "options"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "xóa %n bài hát" msgstr "xóa %n bài hát"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-03-08 11:50+0000\n" "PO-Revision-Date: 2011-03-08 11:50+0000\n"
"Last-Translator: Lele Long <schemacs@gmail.com>\n" "Last-Translator: Lele Long <schemacs@gmail.com>\n"
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n" "Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
"Language: zh\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:14+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:14+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: zh\n"
msgid " ms" msgid " ms"
msgstr " 毫秒" msgstr " 毫秒"
@ -82,15 +82,15 @@ msgstr "%1 首"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "%1: Wii 遥控器设备模块" msgstr "%1: Wii 遥控器设备模块"
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n 失败" msgstr "%n 失败"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n 完成" msgstr "%n 完成"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n 剩余" msgstr "%n 剩余"
@ -1138,6 +1138,9 @@ msgstr "Google 账户用户名"
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "" msgstr ""
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "音乐库分组" msgstr "音乐库分组"
@ -2746,7 +2749,7 @@ msgstr "Z-A"
msgid "Zero" msgid "Zero"
msgstr "00" msgstr "00"
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "添加 %n 首曲目" msgstr "添加 %n 首曲目"
@ -2805,7 +2808,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "选项" msgstr "选项"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "移除 %n 歌" msgstr "移除 %n 歌"

View File

@ -11,12 +11,12 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:35+0000\n" "PO-Revision-Date: 2011-02-15 16:35+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n" "Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Chinese (Traditional) <zh_TW@li.org>\n" "Language-Team: Chinese (Traditional) <zh_TW@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-03-15 05:14+0000\n" "X-Launchpad-Export-Date: 2011-03-15 05:14+0000\n"
"X-Generator: Launchpad (build 12559)\n" "X-Generator: Launchpad (build 12559)\n"
"Language: \n"
msgid " ms" msgid " ms"
msgstr " 毫秒" msgstr " 毫秒"
@ -82,15 +82,15 @@ msgstr "%1 歌曲"
msgid "%1: Wiimotedev module" msgid "%1: Wiimotedev module"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "%n failed" msgid "%n failed"
msgstr "%n 失敗的" msgstr "%n 失敗的"
#, c-format #, c-format, qt-plural-format
msgid "%n finished" msgid "%n finished"
msgstr "%n 完成的" msgstr "%n 完成的"
#, c-format #, c-format, qt-plural-format
msgid "%n remaining" msgid "%n remaining"
msgstr "%n 剩餘的" msgstr "%n 剩餘的"
@ -1140,6 +1140,9 @@ msgstr ""
msgid "Got %1 covers out of %2 (%3 failed)" msgid "Got %1 covers out of %2 (%3 failed)"
msgstr "獲得 %1 涵蓋了 %2 ( %3 失敗 )" msgstr "獲得 %1 涵蓋了 %2 ( %3 失敗 )"
msgid "Grey out non existent songs in my playlists"
msgstr ""
msgid "Group Library by..." msgid "Group Library by..."
msgstr "" msgstr ""
@ -2750,7 +2753,7 @@ msgstr ""
msgid "Zero" msgid "Zero"
msgstr "" msgstr ""
#, c-format #, c-format, qt-plural-format
msgid "add %n songs" msgid "add %n songs"
msgstr "加入 %n 歌" msgstr "加入 %n 歌"
@ -2809,7 +2812,7 @@ msgstr ""
msgid "options" msgid "options"
msgstr "選項" msgstr "選項"
#, c-format #, c-format, qt-plural-format
msgid "remove %n songs" msgid "remove %n songs"
msgstr "移除 %n 歌" msgstr "移除 %n 歌"

View File

@ -349,8 +349,9 @@ void SettingsDialog::accept() {
s.endGroup(); s.endGroup();
// Playback // Playback
s.beginGroup(PlaylistView::kSettingsGroup); s.beginGroup(Playlist::kSettingsGroup);
s.setValue("glow_effect", ui_->current_glow->isChecked()); s.setValue("glow_effect", ui_->current_glow->isChecked());
s.setValue("greyoutdeleted", ui_->b_grey_out_deleted_->isChecked());
s.endGroup(); s.endGroup();
s.beginGroup(Engine::Base::kSettingsGroup); s.beginGroup(Engine::Base::kSettingsGroup);
@ -521,8 +522,9 @@ void SettingsDialog::showEvent(QShowEvent*) {
ui_->global_shortcuts->Load(); ui_->global_shortcuts->Load();
// Playback // Playback
s.beginGroup(PlaylistView::kSettingsGroup); s.beginGroup(Playlist::kSettingsGroup);
ui_->current_glow->setChecked(s.value("glow_effect", true).toBool()); ui_->current_glow->setChecked(s.value("glow_effect", true).toBool());
ui_->b_grey_out_deleted_->setChecked(s.value("greyoutdeleted", false).toBool());
s.endGroup(); s.endGroup();
s.beginGroup(Engine::Base::kSettingsGroup); s.beginGroup(Engine::Base::kSettingsGroup);

View File

@ -120,7 +120,7 @@
<item> <item>
<widget class="QStackedWidget" name="stacked_widget"> <widget class="QStackedWidget" name="stacked_widget">
<property name="currentIndex"> <property name="currentIndex">
<number>4</number> <number>1</number>
</property> </property>
<widget class="QWidget" name="playback_page"> <widget class="QWidget" name="playback_page">
<layout class="QVBoxLayout" name="verticalLayout_10"> <layout class="QVBoxLayout" name="verticalLayout_10">
@ -449,6 +449,29 @@
</property> </property>
</widget> </widget>
</item> </item>
<item>
<spacer name="verticalSpacer_6">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>10</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QCheckBox" name="b_grey_out_deleted_">
<property name="text">
<string>Grey out non existent songs in my playlists</string>
</property>
</widget>
</item>
</layout> </layout>
</widget> </widget>
</item> </item>