Support making spotify playlists available offline.

This commit is contained in:
John Maguire 2011-05-25 14:22:49 +00:00
parent 2f7ea0acbe
commit f246e44b92
61 changed files with 1225 additions and 357 deletions

View File

@ -64,7 +64,7 @@ pkg_check_modules(USBMUXD libusbmuxd)
pkg_check_modules(LIBMTP libmtp>=1.0)
pkg_check_modules(INDICATEQT indicate-qt)
pkg_check_modules(ARCHIVE libarchive)
pkg_check_modules(SPOTIFY libspotify)
pkg_check_modules(SPOTIFY libspotify>=0.0.8)
if (WIN32)
find_package(ZLIB REQUIRED)

View File

@ -55,6 +55,7 @@ SpotifyClient::SpotifyClient(QObject* parent)
spotify_callbacks_.music_delivery = &MusicDeliveryCallback;
spotify_callbacks_.end_of_track = &EndOfTrackCallback;
spotify_callbacks_.streaming_error = &StreamingErrorCallback;
spotify_callbacks_.offline_status_updated = &OfflineStatusUpdatedCallback;
playlistcontainer_callbacks_.container_loaded = &PlaylistContainerLoadedCallback;
playlistcontainer_callbacks_.playlist_added = &PlaylistAddedCallback;
@ -191,6 +192,8 @@ void SpotifyClient::HandleMessage(const protobuf::SpotifyMessage& message) {
Search(message.search_request());
} else if (message.has_image_request()) {
LoadImage(QStringFromStdString(message.image_request().id()));
} else if (message.has_sync_playlist_request()) {
SyncPlaylist(message.sync_playlist_request());
}
}
@ -283,39 +286,53 @@ void SpotifyClient::SendPlaylistList() {
protobuf::Playlists::Playlist* msg = response->add_playlist();
msg->set_index(i);
msg->set_name(sp_playlist_name(playlist));
sp_playlist_offline_status offline_status =
sp_playlist_get_offline_status(session_, playlist);
const bool is_offline = offline_status == SP_PLAYLIST_OFFLINE_STATUS_YES;
msg->set_is_offline(is_offline);
if (offline_status == SP_PLAYLIST_OFFLINE_STATUS_DOWNLOADING) {
msg->set_download_progress(
sp_playlist_get_offline_download_completed(session_, playlist));
} else if (offline_status == SP_PLAYLIST_OFFLINE_STATUS_WAITING) {
msg->set_download_progress(0);
}
}
handler_->SendMessage(message);
}
void SpotifyClient::LoadPlaylist(const protobuf::LoadPlaylistRequest& req) {
PendingLoadPlaylist pending_load;
pending_load.request_ = req;
pending_load.playlist_ = NULL;
switch (req.type()) {
case protobuf::LoadPlaylistRequest_Type_Inbox:
pending_load.playlist_ = sp_session_inbox_create(session_);
sp_playlist* SpotifyClient::GetPlaylist(protobuf::PlaylistType type, int user_index) {
sp_playlist* playlist = NULL;
switch (type) {
case protobuf::Inbox:
playlist = sp_session_inbox_create(session_);
break;
case protobuf::LoadPlaylistRequest_Type_Starred:
pending_load.playlist_ = sp_session_starred_create(session_);
case protobuf::Starred:
playlist = sp_session_starred_create(session_);
break;
case protobuf::LoadPlaylistRequest_Type_UserPlaylist: {
const int index = req.user_playlist_index();
case protobuf::UserPlaylist: {
sp_playlistcontainer* pc = sp_session_playlistcontainer(session_);
if (pc && index <= sp_playlistcontainer_num_playlists(pc)) {
if (sp_playlistcontainer_playlist_type(pc, index) == SP_PLAYLIST_TYPE_PLAYLIST) {
pending_load.playlist_ = sp_playlistcontainer_playlist(pc, index);
sp_playlist_add_ref(pending_load.playlist_);
if (pc && user_index <= sp_playlistcontainer_num_playlists(pc)) {
if (sp_playlistcontainer_playlist_type(pc, user_index) == SP_PLAYLIST_TYPE_PLAYLIST) {
playlist = sp_playlistcontainer_playlist(pc, user_index);
sp_playlist_add_ref(playlist);
}
}
break;
}
}
return playlist;
}
void SpotifyClient::LoadPlaylist(const protobuf::LoadPlaylistRequest& req) {
PendingLoadPlaylist pending_load;
pending_load.request_ = req;
pending_load.playlist_ = GetPlaylist(req.type(), req.user_playlist_index());
// A null playlist might mean the user wasn't logged in, or an invalid
// playlist index was requested, so we'd better return an error straight away.
@ -335,6 +352,13 @@ void SpotifyClient::LoadPlaylist(const protobuf::LoadPlaylistRequest& req) {
PlaylistStateChangedForLoadPlaylist(pending_load.playlist_, this);
}
void SpotifyClient::SyncPlaylist(const protobuf::SyncPlaylistRequest& req) {
sp_playlist* playlist = GetPlaylist(req.request().type(), req.request().user_playlist_index());
// The playlist should already be loaded.
sp_playlist_set_offline_mode(session_, playlist, req.offline_sync());
}
void SpotifyClient::PlaylistStateChangedForLoadPlaylist(sp_playlist* pl, void* userdata) {
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(userdata);
@ -520,6 +544,76 @@ void SpotifyClient::StreamingErrorCallback(sp_session* session, sp_error error)
me->SendPlaybackError(QString::fromUtf8(sp_error_message(error)));
}
void SpotifyClient::OfflineStatusUpdatedCallback(sp_session* session) {
SpotifyClient* me = reinterpret_cast<SpotifyClient*>(sp_session_userdata(session));
sp_playlistcontainer* container = sp_session_playlistcontainer(session);
if (!container) {
qLog(Warning) << "sp_session_playlistcontainer returned NULL";
return;
}
const int count = sp_playlistcontainer_num_playlists(container);
for (int i=0 ; i<count ; ++i) {
const sp_playlist_type type = sp_playlistcontainer_playlist_type(container, i);
sp_playlist* playlist = sp_playlistcontainer_playlist(container, i);
if (type != SP_PLAYLIST_TYPE_PLAYLIST) {
// Just ignore folders for now
continue;
}
int download_progress = me->GetDownloadProgress(playlist);
if (download_progress != -1) {
me->SendDownloadProgress(protobuf::UserPlaylist, i, download_progress);
}
}
sp_playlist* inbox = sp_session_inbox_create(session);
int download_progress = me->GetDownloadProgress(inbox);
sp_playlist_release(inbox);
if (download_progress != -1) {
me->SendDownloadProgress(protobuf::Inbox, -1, download_progress);
}
sp_playlist* starred = sp_session_starred_create(session);
download_progress = me->GetDownloadProgress(starred);
sp_playlist_release(starred);
if (download_progress != -1) {
me->SendDownloadProgress(protobuf::Starred, -1, download_progress);
}
}
void SpotifyClient::SendDownloadProgress(
protobuf::PlaylistType type, int index, int download_progress) {
protobuf::SpotifyMessage message;
protobuf::SyncPlaylistProgress* progress = message.mutable_sync_playlist_progress();
progress->mutable_request()->set_type(type);
if (index != -1) {
progress->mutable_request()->set_user_playlist_index(index);
}
progress->set_sync_progress(download_progress);
handler_->SendMessage(message);
}
int SpotifyClient::GetDownloadProgress(sp_playlist* playlist) {
sp_playlist_offline_status status =
sp_playlist_get_offline_status(session_, playlist);
switch (status) {
case SP_PLAYLIST_OFFLINE_STATUS_NO:
return -1;
case SP_PLAYLIST_OFFLINE_STATUS_YES:
return 100;
case SP_PLAYLIST_OFFLINE_STATUS_DOWNLOADING:
return sp_playlist_get_offline_download_completed(session_, playlist);
case SP_PLAYLIST_OFFLINE_STATUS_WAITING:
return 0;
}
return -1;
}
void SpotifyClient::StartPlayback(const protobuf::PlaybackRequest& req) {
// Get a link object from the URI
sp_link* link = sp_link_create_from_string(req.track_uri().c_str());

View File

@ -66,6 +66,7 @@ private:
const void* frames, int num_frames);
static void SP_CALLCONV EndOfTrackCallback(sp_session* session);
static void SP_CALLCONV StreamingErrorCallback(sp_session* session, sp_error error);
static void SP_CALLCONV OfflineStatusUpdatedCallback(sp_session* session);
// Spotify playlist container callbacks.
static void SP_CALLCONV PlaylistAddedCallback(
@ -94,18 +95,22 @@ private:
void Login(const QString& username, const QString& password);
void Search(const protobuf::SearchRequest& req);
void LoadPlaylist(const protobuf::LoadPlaylistRequest& req);
void SyncPlaylist(const protobuf::SyncPlaylistRequest& req);
void StartPlayback(const protobuf::PlaybackRequest& req);
void LoadImage(const QString& id_b64);
void SendPlaylistList();
void ConvertTrack(sp_track* track, protobuf::Track* pb);
// Gets the appropriate sp_playlist* but does not load it.
sp_playlist* GetPlaylist(protobuf::PlaylistType type, int user_index);
private:
struct PendingLoadPlaylist {
protobuf::LoadPlaylistRequest request_;
sp_playlist* playlist_;
QList<sp_track*> tracks_;
bool offline_sync;
};
struct PendingPlaybackRequest {
@ -127,6 +132,8 @@ private:
void TryPlaybackAgain(const PendingPlaybackRequest& req);
void TryImageAgain(sp_image* image);
int GetDownloadProgress(sp_playlist* playlist);
void SendDownloadProgress(protobuf::PlaylistType type, int index, int download_progress);
QByteArray api_key_;

View File

@ -38,6 +38,9 @@ message Playlists {
message Playlist {
required int32 index = 1;
required string name = 2;
required bool is_offline = 3;
// Offline sync progress between 0-100.
optional int32 download_progress = 4;
}
repeated Playlist playlist = 1;
@ -57,14 +60,14 @@ message Track {
required string album_art_id = 11;
}
message LoadPlaylistRequest {
enum Type {
Starred = 1;
Inbox = 2;
UserPlaylist = 3;
}
enum PlaylistType {
Starred = 1;
Inbox = 2;
UserPlaylist = 3;
}
required Type type = 1;
message LoadPlaylistRequest {
required PlaylistType type = 1;
optional int32 user_playlist_index = 2;
}
@ -73,6 +76,16 @@ message LoadPlaylistResponse {
repeated Track track = 2;
}
message SyncPlaylistRequest {
required LoadPlaylistRequest request = 1;
required bool offline_sync = 2;
}
message SyncPlaylistProgress {
required LoadPlaylistRequest request = 1;
required int32 sync_progress = 2;
}
message PlaybackRequest {
required string track_uri = 1;
required int32 media_port = 2;
@ -116,4 +129,6 @@ message SpotifyMessage {
optional SearchResponse search_response = 9;
optional ImageRequest image_request = 10;
optional ImageResponse image_response = 11;
optional SyncPlaylistRequest sync_playlist_request = 12;
optional SyncPlaylistProgress sync_playlist_progress = 13;
}

View File

@ -58,7 +58,7 @@ RadioModel::RadioModel(BackgroundThread<Database>* db_thread,
AddService(new LastFMService(this));
#endif
#ifdef HAVE_SPOTIFY
AddService(new SpotifyService(this));
AddService(new SpotifyService(task_manager, this));
#endif
AddService(new SomaFMService(this));
AddService(new MagnatuneService(this));

View File

@ -105,15 +105,15 @@ void SpotifyServer::HandleMessage(const protobuf::SpotifyMessage& message) {
const protobuf::LoadPlaylistResponse& response = message.load_playlist_response();
switch (response.request().type()) {
case protobuf::LoadPlaylistRequest_Type_Inbox:
case protobuf::Inbox:
emit InboxLoaded(response);
break;
case protobuf::LoadPlaylistRequest_Type_Starred:
case protobuf::Starred:
emit StarredLoaded(response);
break;
case protobuf::LoadPlaylistRequest_Type_UserPlaylist:
case protobuf::UserPlaylist:
emit UserPlaylistLoaded(response);
break;
}
@ -131,10 +131,12 @@ void SpotifyServer::HandleMessage(const protobuf::SpotifyMessage& message) {
} else {
emit ImageLoaded(id, QImage());
}
} else if (message.has_sync_playlist_progress()) {
emit SyncPlaylistProgress(message.sync_playlist_progress());
}
}
void SpotifyServer::LoadPlaylist(protobuf::LoadPlaylistRequest_Type type, int index) {
void SpotifyServer::LoadPlaylist(protobuf::PlaylistType type, int index) {
protobuf::SpotifyMessage message;
protobuf::LoadPlaylistRequest* req = message.mutable_load_playlist_request();
@ -146,16 +148,43 @@ void SpotifyServer::LoadPlaylist(protobuf::LoadPlaylistRequest_Type type, int in
SendMessage(message);
}
void SpotifyServer::SyncPlaylist(
protobuf::PlaylistType type, int index, bool offline) {
protobuf::SpotifyMessage message;
protobuf::SyncPlaylistRequest* req = message.mutable_sync_playlist_request();
req->mutable_request()->set_type(type);
if (index != -1) {
req->mutable_request()->set_user_playlist_index(index);
}
req->set_offline_sync(offline);
SendMessage(message);
}
void SpotifyServer::SyncInbox() {
SyncPlaylist(protobuf::Inbox, -1, true);
}
void SpotifyServer::SyncStarred() {
SyncPlaylist(protobuf::Starred, -1, true);
}
void SpotifyServer::SyncUserPlaylist(int index) {
Q_ASSERT(index >= 0);
SyncPlaylist(protobuf::UserPlaylist, index, true);
}
void SpotifyServer::LoadInbox() {
LoadPlaylist(protobuf::LoadPlaylistRequest_Type_Inbox);
LoadPlaylist(protobuf::Inbox);
}
void SpotifyServer::LoadStarred() {
LoadPlaylist(protobuf::LoadPlaylistRequest_Type_Starred);
LoadPlaylist(protobuf::Starred);
}
void SpotifyServer::LoadUserPlaylist(int index) {
LoadPlaylist(protobuf::LoadPlaylistRequest_Type_UserPlaylist, index);
Q_ASSERT(index >= 0);
LoadPlaylist(protobuf::UserPlaylist, index);
}
void SpotifyServer::StartPlayback(const QString& uri, quint16 port) {

View File

@ -38,8 +38,11 @@ public:
void Login(const QString& username, const QString& password);
void LoadStarred();
void SyncStarred();
void LoadInbox();
void SyncInbox();
void LoadUserPlaylist(int index);
void SyncUserPlaylist(int index);
void StartPlayback(const QString& uri, quint16 port);
void Search(const QString& text, int limit);
void LoadImage(const QString& id);
@ -56,13 +59,15 @@ signals:
void PlaybackError(const QString& message);
void SearchResults(const protobuf::SearchResponse& response);
void ImageLoaded(const QString& id, const QImage& image);
void SyncPlaylistProgress(const protobuf::SyncPlaylistProgress& progress);
private slots:
void NewConnection();
void HandleMessage(const protobuf::SpotifyMessage& message);
private:
void LoadPlaylist(protobuf::LoadPlaylistRequest_Type type, int index = -1);
void LoadPlaylist(protobuf::PlaylistType type, int index = -1);
void SyncPlaylist(protobuf::PlaylistType type, int index, bool offline);
void SendMessage(const protobuf::SpotifyMessage& message);
QTcpServer* server_;

View File

@ -25,13 +25,16 @@
#include <QMessageBox>
#include <QProcess>
#include <QSettings>
#include <QVariant>
Q_DECLARE_METATYPE(QStandardItem*);
const char* SpotifyService::kServiceName = "Spotify";
const char* SpotifyService::kSettingsGroup = "Spotify";
const char* SpotifyService::kBlobDownloadUrl = "http://spotify.clementine-player.org/";
const int SpotifyService::kSearchDelayMsec = 400;
SpotifyService::SpotifyService(RadioModel* parent)
SpotifyService::SpotifyService(TaskManager* task_manager, RadioModel* parent)
: RadioService(kServiceName, parent),
server_(NULL),
url_handler_(new SpotifyUrlHandler(this, this)),
@ -43,7 +46,8 @@ SpotifyService::SpotifyService(RadioModel* parent)
login_task_id_(0),
pending_search_playlist_(NULL),
context_menu_(NULL),
search_delay_(new QTimer(this)) {
search_delay_(new QTimer(this)),
task_manager_(task_manager) {
// Build the search path for the binary blob.
// Look for one distributed alongside clementine first, then check in the
// user's home directory for any that have been downloaded.
@ -176,6 +180,8 @@ void SpotifyService::EnsureServerCreated(const QString& username,
SLOT(SearchResults(protobuf::SearchResponse)));
connect(server_, SIGNAL(ImageLoaded(QString,QImage)),
SLOT(ImageLoaded(QString,QImage)));
connect(server_, SIGNAL(SyncPlaylistProgress(protobuf::SyncPlaylistProgress)),
SLOT(SyncPlaylistProgress(protobuf::SyncPlaylistProgress)));
server_->Init();
@ -416,6 +422,39 @@ void SpotifyService::EnsureMenuCreated() {
context_menu_->addAction(IconLoader::Load("edit-find"), tr("Search Spotify (opens a new tab)..."), this, SLOT(OpenSearchTab()));
context_menu_->addSeparator();
context_menu_->addAction(IconLoader::Load("configure"), tr("Configure Spotify..."), this, SLOT(ShowConfig()));
playlist_context_menu_ = new QMenu;
playlist_sync_action_ = playlist_context_menu_->addAction(
IconLoader::Load("view-refresh"),
tr("Make playlist available offline"),
this,
SLOT(SyncPlaylist()));
}
void SpotifyService::SyncPlaylist() {
QStandardItem* item = playlist_sync_action_->data().value<QStandardItem*>();
Q_ASSERT(item);
Type type = static_cast<Type>(item->data(RadioModel::Role_Type).toInt());
switch (type) {
case Type_UserPlaylist: {
int index = item->data(Role_UserPlaylistIndex).toInt();
server_->SyncUserPlaylist(index);
playlist_sync_ids_[index] =
task_manager_->StartTask(tr("Syncing Spotify playlist"));
break;
}
case Type_InboxPlaylist:
server_->SyncInbox();
inbox_sync_id_ = task_manager_->StartTask(tr("Syncing Spotify inbox"));
break;
case Type_StarredPlaylist:
server_->SyncStarred();
starred_sync_id_ = task_manager_->StartTask(tr("Syncing Spotify starred tracks"));
break;
default:
break;
}
}
void SpotifyService::Search(const QString& text, Playlist* playlist, bool now) {
@ -472,6 +511,18 @@ SpotifyServer* SpotifyService::server() const {
void SpotifyService::ShowContextMenu(const QModelIndex& index, const QPoint& global_pos) {
EnsureMenuCreated();
QStandardItem* item = model()->itemFromIndex(index);
if (item) {
Type type = static_cast<Type>(item->data(RadioModel::Role_Type).toInt());
if (type == Type_InboxPlaylist ||
type == Type_StarredPlaylist ||
type == Type_UserPlaylist) {
playlist_sync_action_->setData(qVariantFromValue(item));
playlist_context_menu_->popup(global_pos);
return;
}
}
context_menu_->popup(global_pos);
}
@ -505,7 +556,41 @@ void SpotifyService::ImageLoaded(const QString& id, const QImage& image) {
emit ImageLoaded(QUrl("spotify://image/" + id), image);
}
void SpotifyService::SyncPlaylistProgress(
const protobuf::SyncPlaylistProgress& progress) {
qLog(Debug) << "Sync progress:" << progress.sync_progress();
int task_id = -1;
switch (progress.request().type()) {
case protobuf::Inbox:
task_id = inbox_sync_id_;
break;
case protobuf::Starred:
task_id = starred_sync_id_;
break;
case protobuf::UserPlaylist: {
QMap<int, int>::const_iterator it = playlist_sync_ids_.find(
progress.request().user_playlist_index());
if (it != playlist_sync_ids_.end()) {
task_id = it.value();
}
break;
}
default:
break;
}
if (task_id == -1) {
qLog(Warning) << "Received sync progress for unknown playlist";
return;
}
task_manager_->SetTaskProgress(task_id, progress.sync_progress(), 100);
if (progress.sync_progress() == 100) {
task_manager_->SetTaskFinished(task_id);
if (progress.request().type() == protobuf::UserPlaylist) {
playlist_sync_ids_.remove(task_id);
}
}
}
void SpotifyService::ShowConfig() {
emit OpenSettingsAtPage(SettingsDialog::Page_Spotify);
}

View File

@ -20,7 +20,7 @@ class SpotifyService : public RadioService {
Q_OBJECT
public:
SpotifyService(RadioModel* parent);
SpotifyService(TaskManager* task_manager, RadioModel* parent);
~SpotifyService();
enum Type {
@ -83,11 +83,13 @@ private slots:
void UserPlaylistLoaded(const protobuf::LoadPlaylistResponse& response);
void SearchResults(const protobuf::SearchResponse& response);
void ImageLoaded(const QString& id, const QImage& image);
void SyncPlaylistProgress(const protobuf::SyncPlaylistProgress& progress);
void OpenSearchTab();
void DoSearch();
void ShowConfig();
void SyncPlaylist();
void BlobDownloadFinished();
private:
@ -110,9 +112,16 @@ private:
Playlist* pending_search_playlist_;
QMenu* context_menu_;
QMenu* playlist_context_menu_;
QAction* playlist_sync_action_;
QModelIndex context_item_;
QTimer* search_delay_;
TaskManager* task_manager_;
int inbox_sync_id_;
int starred_sync_id_;
QMap<int, int> playlist_sync_ids_;
};
#endif

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2010-12-22 17:44+0000\n"
"Last-Translator: Ali AlNoaimi <the-ghost@live.com>\n"
"Language-Team: Arabic <ar@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ar\n"
"X-Launchpad-Export-Date: 2011-04-10 05:04+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr ""
@ -1677,6 +1677,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2640,6 +2643,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3093,7 +3105,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "أضِف %n أغاني\\أغنية"
@ -3182,7 +3194,7 @@ msgstr "الخيارات"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "أزِل %n أغاني\\أغنية"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2010-12-05 20:18+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Belarusian <be@li.org>\n"
"Language: be\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: be\n"
"X-Launchpad-Export-Date: 2011-04-10 05:05+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 кампазіцый"
msgid "%1: Wiimotedev module"
msgstr "%1: модуль Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n з памылкай"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n завершана"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n засталося"
@ -1691,6 +1691,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2654,6 +2657,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3107,7 +3119,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3196,7 +3208,7 @@ msgstr ""
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-10 10:39+0000\n"
"Last-Translator: George Karavasilev <kokoto_java@yahoo.com>\n"
"Language-Team: Bulgarian <bg@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: bg\n"
"X-Launchpad-Export-Date: 2011-04-11 05:09+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 песни"
msgid "%1: Wiimotedev module"
msgstr "%1:Wiimotedev модул"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n неуспешно"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n завършено"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n оставащо"
@ -1713,6 +1713,9 @@ msgstr "Изтеглянето от Magnatune завършено"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Грешка при отговора"
@ -2680,6 +2683,15 @@ msgstr "Много високо (60 fps)"
msgid "Supported formats"
msgstr "Поддържани формати"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Табовете отгоре"
@ -3174,7 +3186,7 @@ msgstr "Я-А"
msgid "Zero"
msgstr "Нула"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "добавете %n песни"
@ -3263,7 +3275,7 @@ msgstr "опции"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "премахване на %n песни"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-03-27 07:33+0000\n"
"Last-Translator: Gwenn M <Unknown>\n"
"Language-Team: Breton <br@li.org>\n"
"Language: br\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: br\n"
"X-Launchpad-Export-Date: 2011-04-10 05:05+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 roudenn"
msgid "%1: Wiimotedev module"
msgstr "%1 : enlugellad wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n c'hwitet"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n echuet"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n a chom"
@ -1704,6 +1704,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2671,6 +2674,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3127,7 +3139,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "ouzhpennañ %n ton"
@ -3216,7 +3228,7 @@ msgstr "dibarzhioù"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "diverkañ %n ton"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-02 20:14+0000\n"
"Last-Translator: Nedim Skenderovic <Unknown>\n"
"Language-Team: Bosnian <bs@li.org>\n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: bs\n"
"X-Launchpad-Export-Date: 2011-04-10 05:05+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr "%1 Wiimotedev modul"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n završeno"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n ostalo"
@ -1694,6 +1694,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2657,6 +2660,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3110,7 +3122,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3199,7 +3211,7 @@ msgstr ""
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-03-19 23:15+0000\n"
"Last-Translator: Pau Capó <Unknown>\n"
"Language-Team: Catalan <ca@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ca\n"
"X-Launchpad-Export-Date: 2011-04-10 05:05+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 temes"
msgid "%1: Wiimotedev module"
msgstr "%1 mòdul Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n han fallat"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n han acabat"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n restants"
@ -164,8 +164,8 @@ msgid ""
"<p>If you surround sections of text that contain a token with curly-braces, "
"that section will be hidden if the token is empty.</p>"
msgstr ""
"<p>Les fitxes de reemplaçament comencen amb %, per exemple: %artist %album "
"%title </p>\n"
"<p>Les fitxes de reemplaçament comencen amb %, per exemple: %artist %album %"
"title </p>\n"
"\n"
"<p>Si demarqueu entre claus una secció de text que contingui una fitxa de "
"remplaçament, aquesta secció no es mostrarà si la fitxa de remplaçament es "
@ -1712,6 +1712,9 @@ msgstr "Desarrega de Magnatune finalitzada"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Resposta malformada"
@ -2677,6 +2680,15 @@ msgstr ""
msgid "Supported formats"
msgstr "Formats suportats"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3146,7 +3158,7 @@ msgstr ""
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "afegeix %n cançons"
@ -3235,7 +3247,7 @@ msgstr "opcions"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "elimina %n cançons"

View File

@ -12,10 +12,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-11 10:58+0000\n"
"Last-Translator: fri <pavelfric@seznam.cz>\n"
"Language-Team: Czech <kde-i18n-doc@kde.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"X-Launchpad-Export-Date: 2011-04-12 05:12+0000\n"
"X-Generator: Launchpad (build 12735)\n"
"X-Language: cs_CZ\n"
@ -87,15 +87,15 @@ msgstr "%1 skladeb"
msgid "%1: Wiimotedev module"
msgstr "%1: modul Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "nepodařilo se %n"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "dokončeno %n"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "zůstávají %n"
@ -1711,6 +1711,9 @@ msgstr "Stahování z Magnatune bylo dokončeno"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Znetvořená odpověď"
@ -2677,6 +2680,15 @@ msgstr "Velmi vysoké (60 fps)"
msgid "Supported formats"
msgstr "Podporované formáty"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Karty nahoře"
@ -3164,7 +3176,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Vynulovat"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "přidat %n písniček"
@ -3253,7 +3265,7 @@ msgstr "Volby"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "odstranit %n písniček"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2010-08-26 13:46+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Welsh <cy@li.org>\n"
"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cy\n"
"X-Launchpad-Export-Date: 2011-04-10 05:08+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr ""
@ -1677,6 +1677,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2640,6 +2643,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3093,7 +3105,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3182,7 +3194,7 @@ msgstr ""
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -12,10 +12,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-02 22:14+0000\n"
"Last-Translator: Jens E. Jensen <Unknown>\n"
"Language-Team: Danish <kde-i18n-doc@kde.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: da\n"
"X-Launchpad-Export-Date: 2011-04-10 05:05+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -86,15 +86,15 @@ msgstr "%1 numre"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev modul"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n fejlede"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n færdige"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr ""
@ -1680,6 +1680,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Misdannet svar"
@ -2645,6 +2648,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3098,7 +3110,7 @@ msgstr ""
msgid "Zero"
msgstr "Nul"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "tilføj %n sange"
@ -3187,7 +3199,7 @@ msgstr "indstillinger"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "fjern %n sange"

View File

@ -12,10 +12,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-11 21:24+0000\n"
"Last-Translator: Alexander Minges <Unknown>\n"
"Language-Team: German <de@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de\n"
"X-Launchpad-Export-Date: 2011-04-12 05:12+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -86,15 +86,15 @@ msgstr "%1 Stücke"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev-Modul"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n fehlgeschlagen"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n konvertiert"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n verbleibend"
@ -1716,6 +1716,9 @@ msgstr "Magnatune-Download beendet"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Ungültige Antwort"
@ -2686,6 +2689,15 @@ msgstr "Sehr hoch (60 fps)"
msgid "Supported formats"
msgstr "Unterstützte Formate"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Tabs oben"
@ -3182,7 +3194,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Null"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "%n Stücke hinzufügen"
@ -3271,7 +3283,7 @@ msgstr "Einstellungen"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "%n Stücke entfernen"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-08 17:06+0000\n"
"Last-Translator: firewalker <Unknown>\n"
"Language-Team: <en@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Launchpad-Export-Date: 2011-04-10 05:06+0000\n"
"X-Generator: Launchpad (build 12735)\n"
"X-Language: el_GR\n"
@ -87,15 +87,15 @@ msgstr "%1 κομμάτια"
msgid "%1: Wiimotedev module"
msgstr "%1: Άρθρωμα Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n απέτυχε"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n ολοκληρώθηκε"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n απομένει"
@ -1725,6 +1725,9 @@ msgstr "Η λήψη Magnatune ολοκληρώθηκε"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Παραμορφωμένη απάντηση"
@ -2696,6 +2699,15 @@ msgstr "Υπέρ υψηλά (60 fps)"
msgid "Supported formats"
msgstr "Υποστηριζόμενες μορφές"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Καρτέλες στην κορυφή"
@ -3196,7 +3208,7 @@ msgstr "Ω-Α"
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "προσθήκη %n τραγουδιών"
@ -3285,7 +3297,7 @@ msgstr "επιλογές"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "αφαίρεση %n τραγουδιών"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2010-12-25 04:49+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Launchpad-Export-Date: 2011-04-10 05:05+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr ""
@ -1677,6 +1677,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2640,6 +2643,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3093,7 +3105,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3182,7 +3194,7 @@ msgstr ""
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:06+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: English (Canada) <en_CA@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Launchpad-Export-Date: 2011-04-10 05:09+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n failed"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n finished"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n remaining"
@ -1680,6 +1680,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Malformed response"
@ -2644,6 +2647,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3097,7 +3109,7 @@ msgstr ""
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "add %n songs"
@ -3186,7 +3198,7 @@ msgstr "options"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "remove %n songs"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:29+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Launchpad-Export-Date: 2011-04-10 05:08+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr ""
@ -1678,6 +1678,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Malformed response"
@ -2641,6 +2644,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3094,7 +3106,7 @@ msgstr ""
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3183,7 +3195,7 @@ msgstr "options"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-05 08:07+0000\n"
"Last-Translator: Michael Moroni <michael.moroni@mailoo.org>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: eo\n"
"X-Launchpad-Export-Date: 2011-04-10 05:05+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 trakoj"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev-modulo"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n malsukcesis"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n finiĝis"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n restas"
@ -1677,6 +1677,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2640,6 +2643,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3093,7 +3105,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3182,7 +3194,7 @@ msgstr ""
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-06 11:49+0000\n"
"Last-Translator: Fitoschido <fitoschido@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Launchpad-Export-Date: 2011-04-10 05:08+0000\n"
"X-Generator: Launchpad (build 12735)\n"
"X-Language: es_ES\n"
@ -86,15 +86,15 @@ msgstr "%1 pistas"
msgid "%1: Wiimotedev module"
msgstr "%1: Módulo Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n falló"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n completado(s)"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n pendiente(s)"
@ -752,8 +752,8 @@ msgid ""
"Could not create the GStreamer element \"%1\" - make sure you have all the "
"required GStreamer plugins installed"
msgstr ""
"No se pudo crear el elemento «%1» de GStreamer. Asegúrese de tener "
"instalados todos los complementos necesarios de GStreamer."
"No se pudo crear el elemento «%1» de GStreamer. Asegúrese de tener instalados "
"todos los complementos necesarios de GStreamer."
#, qt-format
msgid ""
@ -1726,6 +1726,9 @@ msgstr "Descarga de Magnatune finalizada"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Respuesta malformada"
@ -2695,6 +2698,15 @@ msgstr "Super alta (60 fps)"
msgid "Supported formats"
msgstr "Formatos soportados"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Pestañas en la parte superior"
@ -3188,7 +3200,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Cero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "añadir %n pistas"
@ -3277,7 +3289,7 @@ msgstr "opciones"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "remover %n pistas"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-03-02 09:32+0000\n"
"Last-Translator: lyyser <Unknown>\n"
"Language-Team: Estonian <et@li.org>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: et\n"
"X-Launchpad-Export-Date: 2011-04-10 05:05+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 pala"
msgid "%1: Wiimotedev module"
msgstr "%1: moodul Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n ebaõnnestus"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n lõpetatud"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "jäänud %n"
@ -1678,6 +1678,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Vigane vastus"
@ -2641,6 +2644,15 @@ msgstr ""
msgid "Supported formats"
msgstr "Toetatud vormingud"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3094,7 +3106,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Null"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "lisa %n laulu"
@ -3183,7 +3195,7 @@ msgstr "valikud"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2010-12-05 20:21+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Basque <eu@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: eu\n"
"X-Launchpad-Export-Date: 2011-04-10 05:05+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr ""
@ -1677,6 +1677,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2640,6 +2643,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3093,7 +3105,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3182,7 +3194,7 @@ msgstr ""
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-10 08:44+0000\n"
"Last-Translator: Kristian Polso <Unknown>\n"
"Language-Team: Finnish <fi@li.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fi\n"
"X-Launchpad-Export-Date: 2011-04-11 05:09+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 kappaletta"
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n epäonnistui"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n valmistui"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n jäljellä"
@ -1698,6 +1698,9 @@ msgstr "Magnatune-lataus valmistui"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Virheellinen vastaus"
@ -2663,6 +2666,15 @@ msgstr "Erittäin nopea (60 fps)"
msgid "Supported formats"
msgstr "Tuetut muodot"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Välilehdet ylhäällä"
@ -3141,7 +3153,7 @@ msgstr "Ö-A"
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "lisää %n kappaletta"
@ -3230,7 +3242,7 @@ msgstr ""
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "poista %n kappaletta"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-12 19:34+0000\n"
"Last-Translator: bouchard renaud <Unknown>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Launchpad-Export-Date: 2011-04-13 05:02+0000\n"
"X-Generator: Launchpad (build 12735)\n"
"X-Language: fr_FR\n"
@ -86,15 +86,15 @@ msgstr "%1 pistes"
msgid "%1: Wiimotedev module"
msgstr "%1 : Module wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n échoué"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n terminé"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n manquant"
@ -1730,6 +1730,9 @@ msgstr "Téléchargement Magnatune terminé"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Réponse mal formatée"
@ -2699,6 +2702,15 @@ msgstr "Très élevé (60 fps)"
msgid "Supported formats"
msgstr "Formats supportés"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Onglets au dessus"
@ -3178,9 +3190,9 @@ msgid ""
"for automatic tag fetching. Try installing the 'gstreamer-plugins-bad' "
"package."
msgstr ""
"GStreamer ne possède pas le module externe « ofa », nécessaire pour "
"compléter les tags automatiquement. Essayez d'installer le paquet « "
"gstreamer-plugins-bad »."
"GStreamer ne possède pas le module externe « ofa », nécessaire pour compléter "
"les tags automatiquement. Essayez d'installer le paquet « gstreamer-plugins-"
"bad »."
msgid "Your library is empty!"
msgstr "Votre bibliothèque est vide !"
@ -3198,7 +3210,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zéro"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "ajouter %n morceaux"
@ -3287,7 +3299,7 @@ msgstr "options"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "enlever %n morceaux"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-03 07:12+0000\n"
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n"
"Language-Team: Galician <gl@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: gl\n"
"X-Launchpad-Export-Date: 2011-04-10 05:06+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 canción"
msgid "%1: Wiimotedev module"
msgstr "%1: Módulo Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n fallou"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n completado(s)"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n restante"
@ -164,8 +164,8 @@ msgid ""
"<p>If you surround sections of text that contain a token with curly-braces, "
"that section will be hidden if the token is empty.</p>"
msgstr ""
"<p>As fichas de substitución comezan con %, por exemplo: %artist %album "
"%title </p>\n"
"<p>As fichas de substitución comezan con %, por exemplo: %artist %album %"
"title </p>\n"
"<p>Se rodea seccións de texto que conteñen unha ficha de substitución, esa "
"sección non se amosará se a ficha de substitución estará baleira.</p>"
@ -1686,6 +1686,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Resposta mal formada"
@ -2649,6 +2652,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3102,7 +3114,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3191,7 +3203,7 @@ msgstr "Opzóns"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 15:55+0000\n"
"Last-Translator: Ofir Klinger <klinger.ofir@gmail.com>\n"
"Language-Team: Hebrew <he@li.org>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: he\n"
"X-Launchpad-Export-Date: 2011-04-10 05:06+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 רצועות"
msgid "%1: Wiimotedev module"
msgstr "%1: המודול Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n נכשל"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n הסתיים"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n נותר"
@ -1694,6 +1694,9 @@ msgstr "ההורדה מ־Magnatune הסתיימה"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "תגובה שגויה"
@ -2658,6 +2661,15 @@ msgstr "ממש גבוה (60 fps)"
msgid "Supported formats"
msgstr "פורמטים נתמכים"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "לשוניות למעלה"
@ -3128,7 +3140,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "אפס"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "הוסף %n שירים"
@ -3217,7 +3229,7 @@ msgstr "אפשרויות"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "הסרת %n שירים"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2010-11-22 19:42+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Hindi <hi@li.org>\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hi\n"
"X-Launchpad-Export-Date: 2011-04-10 05:06+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr ""
@ -1677,6 +1677,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2640,6 +2643,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3093,7 +3105,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3182,7 +3194,7 @@ msgstr ""
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-09 15:52+0000\n"
"Last-Translator: gogo <trebelnik2@gmail.com>\n"
"Language-Team: Croatian <hr@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hr\n"
"X-Launchpad-Export-Date: 2011-04-10 05:07+0000\n"
"X-Generator: Launchpad (build 12735)\n"
"X-Poedit-Country: CROATIA\n"
@ -87,15 +87,15 @@ msgstr "%1 pjesme"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev module"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n nije uspjelo"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n završeno"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n preostalo"
@ -1711,6 +1711,9 @@ msgstr "Magnatune preuzimanje završeno"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Pogreška u odgovoru"
@ -2676,6 +2679,15 @@ msgstr "Super visoko (60 fps)"
msgid "Supported formats"
msgstr "Podržani formati"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Kartice pri vrhu"
@ -3164,7 +3176,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Nula"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "dodajte %n pjesama"
@ -3253,7 +3265,7 @@ msgstr "opcije"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "premjesti %n pjesama"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-09 12:21+0000\n"
"Last-Translator: ntomka <Unknown>\n"
"Language-Team: Hungarian <hu@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hu\n"
"X-Launchpad-Export-Date: 2011-04-10 05:06+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 szám"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev modul"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n meghiúsult"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n befejezve"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n hátralévő"
@ -1713,6 +1713,9 @@ msgstr "Letöltés a Magnatuneról befejezve"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Hibásan formázott válasz"
@ -2681,6 +2684,15 @@ msgstr "Nagyon gyors (60 fps)"
msgid "Supported formats"
msgstr "Támogatott formátumok"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Lapfülek felül"
@ -3170,7 +3182,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Nulla"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "%n szám felvétele"
@ -3259,7 +3271,7 @@ msgstr "beállítások"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "%n szám eltávolítása"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-06 10:49+0000\n"
"Last-Translator: David M. Coe <Unknown>\n"
"Language-Team: Armenian <hy@li.org>\n"
"Language: hy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hy\n"
"X-Launchpad-Export-Date: 2011-04-10 05:05+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n ավարտված"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n մնացած"
@ -1677,6 +1677,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2640,6 +2643,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3093,7 +3105,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3182,7 +3194,7 @@ msgstr ""
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-03-14 09:09+0000\n"
"Last-Translator: Helgi Páll Jónsson <Unknown>\n"
"Language-Team: Icelandic <is@li.org>\n"
"Language: is\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: is\n"
"X-Launchpad-Export-Date: 2011-04-10 05:06+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 lög"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimodedev eining"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n misheppnaðist"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n lokið"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n eftir"
@ -1677,6 +1677,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2640,6 +2643,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3093,7 +3105,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3182,7 +3194,7 @@ msgstr ""
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -12,10 +12,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-09 09:37+0000\n"
"Last-Translator: Vincenzo Reale <smart2128@baslug.org>\n"
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"X-Launchpad-Export-Date: 2011-04-10 05:06+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -86,15 +86,15 @@ msgstr "%1 tracce"
msgid "%1: Wiimotedev module"
msgstr "%1: modulo Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n non riusciti"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n completati"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n rimanenti"
@ -1721,6 +1721,9 @@ msgstr "Scaricamento di Magnatune completato"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Risposta non corretta"
@ -2690,6 +2693,15 @@ msgstr "Altissima (60 fps)"
msgid "Supported formats"
msgstr "Formati supportati"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Schede in alto"
@ -3188,7 +3200,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "aggiungi %n brani"
@ -3277,7 +3289,7 @@ msgstr "opzioni"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "rimuovi %n brani"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 15:49+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Launchpad-Export-Date: 2011-04-10 05:06+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 個のトラック"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev モジュール"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n 曲失敗しました"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n が完了しました"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n 曲残っています"
@ -1700,6 +1700,9 @@ msgstr "Magnatune ダウンロードが完了しました"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "不正な応答です"
@ -2666,6 +2669,15 @@ msgstr "最高 (60 fps)"
msgid "Supported formats"
msgstr "サポートされている形式"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "タブを上に配置"
@ -3141,7 +3153,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "%n 曲追加"
@ -3230,7 +3242,7 @@ msgstr "オプション"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "%n 曲削除"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2010-12-22 18:08+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Kazakh <kk@li.org>\n"
"Language: kk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: kk\n"
"X-Launchpad-Export-Date: 2011-04-10 05:07+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr ""
@ -1677,6 +1677,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2640,6 +2643,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3093,7 +3105,7 @@ msgstr ""
msgid "Zero"
msgstr "Нөл"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3182,7 +3194,7 @@ msgstr "опциялар"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-05 14:22+0000\n"
"Last-Translator: Liudas Ališauskas <liudas.alisauskas@gmail.com>\n"
"Language-Team: Lithuanian <liudas@akmc.lt>\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: lt\n"
"X-Launchpad-Export-Date: 2011-04-10 05:07+0000\n"
"X-Generator: Launchpad (build 12735)\n"
"X-Poedit-Country: LITHUANIA\n"
@ -88,15 +88,15 @@ msgstr "%1 takeliai"
msgid "%1: Wiimotedev module"
msgstr "%1: Wii pulto modulis"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n nepavyko"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n baigta"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n pervardinama"
@ -1711,6 +1711,9 @@ msgstr "Magnatune atsiuntimas baigtas"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Netinkamas atsakymas"
@ -2676,6 +2679,15 @@ msgstr "Labai aukštas (60 kps)"
msgid "Supported formats"
msgstr "Palaikomi formatai"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Kortelės viršuje"
@ -3158,7 +3170,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Nulis"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "pridėti %n dainų"
@ -3247,7 +3259,7 @@ msgstr "parinktys"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "pašalinti %n dainas"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-01-10 15:29+0000\n"
"Last-Translator: uGGA <Unknown>\n"
"Language-Team: uGGa\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: lv\n"
"X-Launchpad-Export-Date: 2011-04-10 05:07+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 dziesmas"
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr ""
@ -1677,6 +1677,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2640,6 +2643,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3093,7 +3105,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3182,7 +3194,7 @@ msgstr "opcijas"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-10 16:17+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Malay <ms@li.org>\n"
"Language: ms\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ms\n"
"X-Launchpad-Export-Date: 2011-04-11 05:09+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr ""
@ -1677,6 +1677,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2640,6 +2643,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3093,7 +3105,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3182,7 +3194,7 @@ msgstr ""
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:31+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Norwegian Bokmal <nb@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: nb\n"
"X-Launchpad-Export-Date: 2011-04-10 05:07+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 spor"
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n ferdige"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n gjenstående"
@ -1689,6 +1689,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Ugyldig svar"
@ -2652,6 +2655,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3106,7 +3118,7 @@ msgstr ""
msgid "Zero"
msgstr "Null"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3195,7 +3207,7 @@ msgstr "innstillinger"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-12 21:14+0000\n"
"Last-Translator: Cugel <Unknown>\n"
"Language-Team: Dutch <nl@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: nl\n"
"X-Launchpad-Export-Date: 2011-04-13 05:02+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 nummers"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev module"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n mislukt"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n voltooid"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n te gaan"
@ -1719,6 +1719,9 @@ msgstr "Magnatune download voltooid"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Foutieve respons"
@ -2688,6 +2691,15 @@ msgstr "Super hoog (60 fps)"
msgid "Supported formats"
msgstr "Ondersteunde formaten"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Tabs bovenaan"
@ -3183,7 +3195,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Nul"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "%n nummers toevoegen"
@ -3272,7 +3284,7 @@ msgstr "opties"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "%n nummers verwijderen"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:28+0000\n"
"Last-Translator: Cédric VALMARY (Tot en òc) <cvalmary@yahoo.fr>\n"
"Language-Team: Occitan (post 1500) <oc@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Launchpad-Export-Date: 2011-04-10 05:07+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr ""
@ -1677,6 +1677,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2640,6 +2643,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3093,7 +3105,7 @@ msgstr ""
msgid "Zero"
msgstr "Zèro"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3182,7 +3194,7 @@ msgstr "opcions"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-03-09 07:23+0000\n"
"Last-Translator: Harmanpreet Singh Gill <Unknown>\n"
"Language-Team: Punjabi <pa@li.org>\n"
"Language: pa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pa\n"
"X-Launchpad-Export-Date: 2011-04-10 05:07+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr ""
@ -1677,6 +1677,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2640,6 +2643,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3093,7 +3105,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3182,7 +3194,7 @@ msgstr ""
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -10,10 +10,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-02 16:43+0000\n"
"Last-Translator: Paweł Bara <Unknown>\n"
"Language-Team: Polish <>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Launchpad-Export-Date: 2011-04-10 05:07+0000\n"
"X-Generator: Launchpad (build 12735)\n"
"X-Language: pl_PL\n"
@ -85,15 +85,15 @@ msgstr "%1 ścieżek"
msgid "%1: Wiimotedev module"
msgstr "%1: moduł Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n nieudane"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n zakończone"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "pozostało %n"
@ -1713,6 +1713,9 @@ msgstr "Pobieranie z Magnatune zakończone"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Nieprawidłowa odpowiedź"
@ -2681,6 +2684,15 @@ msgstr "Bardzo wysoka jakość (60 fps)"
msgid "Supported formats"
msgstr "Obsługiwane formaty"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Zakładki na górze"
@ -3171,7 +3183,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "dodaj %n utworów"
@ -3260,7 +3272,7 @@ msgstr "opcje"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "usuń %n utworów"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-10 01:16+0000\n"
"Last-Translator: Sérgio Marques <Unknown>\n"
"Language-Team: \n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt\n"
"X-Launchpad-Export-Date: 2011-04-11 05:09+0000\n"
"X-Generator: Launchpad (build 12735)\n"
"X-Poedit-Country: PORTUGAL\n"
@ -87,15 +87,15 @@ msgstr "%1 músicas"
msgid "%1: Wiimotedev module"
msgstr "%1: Módulo Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n falha(s)"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n concluída(s)"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n por converter"
@ -1716,6 +1716,9 @@ msgstr "Transferência Magnatune concluída"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Resposta inválida"
@ -2685,6 +2688,15 @@ msgstr "Elevada (60 ips)"
msgid "Supported formats"
msgstr "Formatos suportados"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Separadores no topo"
@ -3180,7 +3192,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "adicionar %n músicas"
@ -3269,7 +3281,7 @@ msgstr "opções"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "remover %n músicas"

View File

@ -12,10 +12,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-08 01:46+0000\n"
"Last-Translator: Aluísio Augusto Silva Gonçalves <Unknown>\n"
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt_BR\n"
"X-Launchpad-Export-Date: 2011-04-10 05:08+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -86,15 +86,15 @@ msgstr "%1 faixas"
msgid "%1: Wiimotedev module"
msgstr "%1: Modulo do dispositivo Wiimote"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n falhou"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n finalizado"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n faltando"
@ -1714,6 +1714,9 @@ msgstr "Download do Magnatune finalizado"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Resposta inválida"
@ -2683,6 +2686,15 @@ msgstr "Super alto (60 fps)"
msgid "Supported formats"
msgstr "Formatos suportados"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Mostrar abas no topo"
@ -3171,7 +3183,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "Adicionar %n músicas"
@ -3260,7 +3272,7 @@ msgstr "opções"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "Remover %n músicas"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-11 20:16+0000\n"
"Last-Translator: Daniela Barcan <Unknown>\n"
"Language-Team: Romanian <ro@li.org>\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ro\n"
"X-Launchpad-Export-Date: 2011-04-12 05:12+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 piste"
msgid "%1: Wiimotedev module"
msgstr "%1: modul Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n eșuat"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n finalizat"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n rămas"
@ -1713,6 +1713,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2676,6 +2679,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3129,7 +3141,7 @@ msgstr ""
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3218,7 +3230,7 @@ msgstr "opțiuni"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "elimină %n piese"

View File

@ -10,10 +10,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-12 12:34+0000\n"
"Last-Translator: Chubakur <Unknown>\n"
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
"X-Launchpad-Export-Date: 2011-04-13 05:02+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -84,15 +84,15 @@ msgstr "%1 композиций"
msgid "%1: Wiimotedev module"
msgstr "%1: модуль Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n с ошибкой"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n завершено"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n осталось"
@ -1710,6 +1710,9 @@ msgstr "Загрузка Magnatune окончена"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Неправильный ответ"
@ -2676,6 +2679,15 @@ msgstr "Очень высокая (60 fps)"
msgid "Supported formats"
msgstr "Поддерживаемые форматы"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Вкладки вверху"
@ -3163,7 +3175,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "По-умолчанию"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "добавить %n композиций"
@ -3252,7 +3264,7 @@ msgstr "настройки"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "удалить %n композиций"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-09 11:31+0000\n"
"Last-Translator: DAG Software <Unknown>\n"
"Language-Team: \n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Launchpad-Export-Date: 2011-04-10 05:07+0000\n"
"X-Generator: Launchpad (build 12735)\n"
"X-Language: sk_SK\n"
@ -86,15 +86,15 @@ msgstr "%1 skladieb"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev modul"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n zlyhalo"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n dokončených"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n zostávajúcich"
@ -1707,6 +1707,9 @@ msgstr "Magnatune sťahovanie dokončené"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Poškodená odpoveď"
@ -2672,6 +2675,15 @@ msgstr "Super vysoký (60 fps)"
msgid "Supported formats"
msgstr "Podporované formáty"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Karty na vrchu"
@ -3161,7 +3173,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Vynulovať"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "pridať %n piesní"
@ -3250,7 +3262,7 @@ msgstr "možnosti"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "odstrániť %n piesní"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-03-31 13:37+0000\n"
"Last-Translator: R33D3M33R <Unknown>\n"
"Language-Team: Slovenian <sl@li.org>\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sl\n"
"X-Launchpad-Export-Date: 2011-04-10 05:08+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 skladb"
msgid "%1: Wiimotedev module"
msgstr "%1: Wimotedev modul"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n spodletelih"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n končanih"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n preostaja"
@ -1709,6 +1709,9 @@ msgstr "Magnatune prejem je končan"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Nepravilno oblikovan odziv"
@ -2677,6 +2680,15 @@ msgstr "Zelo visoka (60fps)"
msgid "Supported formats"
msgstr "Podprte vrste"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Zavihki na vrhu"
@ -3167,7 +3179,7 @@ msgstr "Ž-A"
msgid "Zero"
msgstr "Brez"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "dodaj %n skladb"
@ -3256,7 +3268,7 @@ msgstr "možnosti"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "odstrani %n skladb"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-02 20:19+0000\n"
"Last-Translator: Punky <pyntux@gmail.com>\n"
"Language-Team: Serbian <sr@li.org>\n"
"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sr\n"
"X-Launchpad-Export-Date: 2011-04-10 05:07+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 нумера"
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n неуспешно"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n завршено"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n преостало"
@ -1684,6 +1684,9 @@ msgstr "Завршено преузимање са Магнатјуна"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Лош одговор"
@ -2648,6 +2651,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3103,7 +3115,7 @@ msgstr ""
msgid "Zero"
msgstr "Нулто"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "додај %n песама"
@ -3192,7 +3204,7 @@ msgstr "Опције"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "remove %n песама"

View File

@ -12,10 +12,10 @@ msgstr ""
"Last-Translator: Fredrik Andersson <fredrikfritte@gmail.com>\n"
"Language-Team: Launchpad Swedish Translators <lp-l10n-sv@lists.launchpad."
"net>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sv\n"
"X-Launchpad-Export-Date: 2011-04-10 05:08+0000\n"
"X-Generator: Launchpad (build 12735)\n"
"X-Poedit-Language: Swedish\n"
@ -87,15 +87,15 @@ msgstr "%1 spår"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev-modul"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n misslyckades"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n färdig"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n återstår"
@ -1711,6 +1711,9 @@ msgstr "Magnatude-hämtning slutförd"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Felformaterat svar"
@ -2675,6 +2678,15 @@ msgstr "Super hög (60 fps)"
msgid "Supported formats"
msgstr "Stödda format"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Flikar längst upp"
@ -3157,7 +3169,7 @@ msgstr "Ö-A"
msgid "Zero"
msgstr "Noll"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "lägg till %n låtar"
@ -3246,7 +3258,7 @@ msgstr "alternativ"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "ta bort %n låtar"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-10 12:51+0000\n"
"Last-Translator: Hamit Selahattin Naiboğlu <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: tr\n"
"X-Launchpad-Export-Date: 2011-04-11 05:09+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 parça"
msgid "%1: Wiimotedev module"
msgstr "%1: Wiimotedev modülü"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n başarısız"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n tamamlandı"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n kalan"
@ -1708,6 +1708,9 @@ msgstr "Magnatune indirme bitti"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Bozuk yanıt"
@ -2674,6 +2677,15 @@ msgstr "Süper yüksek (60 fps)"
msgid "Supported formats"
msgstr "Desteklenen biçimler"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Üstteki sekmeler"
@ -3155,7 +3167,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Sıfır"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "%n şarkıyı ekle"
@ -3244,7 +3256,7 @@ msgstr "seçenekler"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "%n şarkıyı kaldır"

View File

@ -75,15 +75,15 @@ msgstr ""
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr ""
@ -1667,6 +1667,9 @@ msgstr ""
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2630,6 +2633,15 @@ msgstr ""
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3083,7 +3095,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr ""
@ -3172,7 +3184,7 @@ msgstr ""
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr ""

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-10 01:28+0000\n"
"Last-Translator: Sergiy Gavrylov <sergiovana@bigmir.net>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: uk\n"
"X-Launchpad-Export-Date: 2011-04-11 05:09+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 доріжок"
msgid "%1: Wiimotedev module"
msgstr "%1: Модуль Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n з помилкою"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n завершено"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n залишилось"
@ -1707,6 +1707,9 @@ msgstr "Завантаження з Magnatune завершено"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Спотворений відгук"
@ -2672,6 +2675,15 @@ msgstr "Найвища (60 к/с)"
msgid "Supported formats"
msgstr "Підтримувані формати"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Вкладки зверху"
@ -3155,7 +3167,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "додати %n композицій"
@ -3244,7 +3256,7 @@ msgstr "параметри"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "вилучити %n композицій"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-04-09 14:39+0000\n"
"Last-Translator: Lê Trường An <xinemdungkhoc1@gmail.com>\n"
"Language-Team: Vietnamese <vi@li.org>\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: vi\n"
"X-Launchpad-Export-Date: 2011-04-10 05:08+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 track"
msgid "%1: Wiimotedev module"
msgstr "%1: mô-đun Wiimotedev"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n thất bại"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n kết thúc"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "còn lại %n"
@ -1710,6 +1710,9 @@ msgstr "Hoàn tất tải về Magnatune"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "Phản hồi có vẻ xấu"
@ -2677,6 +2680,15 @@ msgstr "Rất cao (60 fps)"
msgid "Supported formats"
msgstr "Các định dạng được hỗ trợ"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "Các tab ở phía trên"
@ -3165,7 +3177,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "Zero"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "và %n bài hát"
@ -3254,7 +3266,7 @@ msgstr "options"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "xóa %n bài hát"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-03-08 11:50+0000\n"
"Last-Translator: Lele Long <schemacs@gmail.com>\n"
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
"Language: zh\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: zh\n"
"X-Launchpad-Export-Date: 2011-04-10 05:08+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 首"
msgid "%1: Wiimotedev module"
msgstr "%1: Wii 遥控器设备模块"
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n 失败"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n 完成"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n 剩余"
@ -1679,6 +1679,9 @@ msgstr "Magnatune 下载完成"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr ""
@ -2642,6 +2645,15 @@ msgstr "非常高(60 fps)"
msgid "Supported formats"
msgstr "支持的格式"
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr "标签在上"
@ -3095,7 +3107,7 @@ msgstr "Z-A"
msgid "Zero"
msgstr "00"
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "添加 %n 首曲目"
@ -3184,7 +3196,7 @@ msgstr "选项"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "移除 %n 歌"

View File

@ -11,10 +11,10 @@ msgstr ""
"PO-Revision-Date: 2011-02-15 16:35+0000\n"
"Last-Translator: David Sansome <me@davidsansome.com>\n"
"Language-Team: Chinese (Traditional) <zh_TW@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Launchpad-Export-Date: 2011-04-10 05:08+0000\n"
"X-Generator: Launchpad (build 12735)\n"
@ -85,15 +85,15 @@ msgstr "%1 歌曲"
msgid "%1: Wiimotedev module"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "%n failed"
msgstr "%n 失敗的"
#, c-format, qt-plural-format
#, c-format
msgid "%n finished"
msgstr "%n 完成的"
#, c-format, qt-plural-format
#, c-format
msgid "%n remaining"
msgstr "%n 剩餘的"
@ -1681,6 +1681,9 @@ msgstr "Magnatune下載完成"
msgid "Main profile (MAIN)"
msgstr ""
msgid "Make playlist available offline"
msgstr ""
msgid "Malformed response"
msgstr "格式不正確的反應"
@ -2644,6 +2647,15 @@ msgstr "超高 (60 fps)"
msgid "Supported formats"
msgstr ""
msgid "Syncing Spotify inbox"
msgstr ""
msgid "Syncing Spotify playlist"
msgstr ""
msgid "Syncing Spotify starred tracks"
msgstr ""
msgid "Tabs on top"
msgstr ""
@ -3099,7 +3111,7 @@ msgstr ""
msgid "Zero"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "add %n songs"
msgstr "加入 %n 歌"
@ -3188,7 +3200,7 @@ msgstr "選項"
msgid "press enter"
msgstr ""
#, c-format, qt-plural-format
#, c-format
msgid "remove %n songs"
msgstr "移除 %n 歌"