diff --git a/CMakeLists.txt b/CMakeLists.txt index 3e91a5d61..27a9ca7c1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/spotifyblob/blob/spotifyclient.cpp b/spotifyblob/blob/spotifyclient.cpp index 74228bfdc..3020cdcaa 100644 --- a/spotifyblob/blob/spotifyclient.cpp +++ b/spotifyblob/blob/spotifyclient.cpp @@ -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(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(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 ; iGetDownloadProgress(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()); diff --git a/spotifyblob/blob/spotifyclient.h b/spotifyblob/blob/spotifyclient.h index ad80d63c8..e854bf04a 100644 --- a/spotifyblob/blob/spotifyclient.h +++ b/spotifyblob/blob/spotifyclient.h @@ -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 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_; diff --git a/spotifyblob/common/spotifymessages.proto b/spotifyblob/common/spotifymessages.proto index 524573534..12a814e2c 100644 --- a/spotifyblob/common/spotifymessages.proto +++ b/spotifyblob/common/spotifymessages.proto @@ -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; } diff --git a/src/radio/radiomodel.cpp b/src/radio/radiomodel.cpp index 3c59f9a97..cd0b73628 100644 --- a/src/radio/radiomodel.cpp +++ b/src/radio/radiomodel.cpp @@ -58,7 +58,7 @@ RadioModel::RadioModel(BackgroundThread* 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)); diff --git a/src/radio/spotifyserver.cpp b/src/radio/spotifyserver.cpp index 2003e8888..2abf1556b 100644 --- a/src/radio/spotifyserver.cpp +++ b/src/radio/spotifyserver.cpp @@ -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) { diff --git a/src/radio/spotifyserver.h b/src/radio/spotifyserver.h index f5f87f391..583834d60 100644 --- a/src/radio/spotifyserver.h +++ b/src/radio/spotifyserver.h @@ -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_; diff --git a/src/radio/spotifyservice.cpp b/src/radio/spotifyservice.cpp index 3231f6b8c..cccb0c8db 100644 --- a/src/radio/spotifyservice.cpp +++ b/src/radio/spotifyservice.cpp @@ -25,13 +25,16 @@ #include #include #include +#include + +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(); + Q_ASSERT(item); + + Type type = static_cast(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(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::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); } - diff --git a/src/radio/spotifyservice.h b/src/radio/spotifyservice.h index 82204b2a3..99032f189 100644 --- a/src/radio/spotifyservice.h +++ b/src/radio/spotifyservice.h @@ -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 playlist_sync_ids_; }; #endif diff --git a/src/translations/ar.po b/src/translations/ar.po index 30be5a5de..d1319ff67 100644 --- a/src/translations/ar.po +++ b/src/translations/ar.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-12-22 17:44+0000\n" "Last-Translator: Ali AlNoaimi \n" "Language-Team: Arabic \n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" "X-Launchpad-Export-Date: 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 أغاني\\أغنية" diff --git a/src/translations/be.po b/src/translations/be.po index a4f8785f3..2bc3bdde8 100644 --- a/src/translations/be.po +++ b/src/translations/be.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-12-05 20:18+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Belarusian \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 "" diff --git a/src/translations/bg.po b/src/translations/bg.po index 521e21638..7f2742a7f 100644 --- a/src/translations/bg.po +++ b/src/translations/bg.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-10 10:39+0000\n" "Last-Translator: George Karavasilev \n" "Language-Team: Bulgarian \n" -"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "X-Launchpad-Export-Date: 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 песни" diff --git a/src/translations/br.po b/src/translations/br.po index b61ad2364..bf9d69df7 100644 --- a/src/translations/br.po +++ b/src/translations/br.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-03-27 07:33+0000\n" "Last-Translator: Gwenn M \n" "Language-Team: Breton \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" diff --git a/src/translations/bs.po b/src/translations/bs.po index cb4cd8051..cb504b673 100644 --- a/src/translations/bs.po +++ b/src/translations/bs.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-02 20:14+0000\n" "Last-Translator: Nedim Skenderovic \n" "Language-Team: Bosnian \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 "" diff --git a/src/translations/ca.po b/src/translations/ca.po index 49550ea43..2731ec071 100644 --- a/src/translations/ca.po +++ b/src/translations/ca.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-03-19 23:15+0000\n" "Last-Translator: Pau Capó \n" "Language-Team: Catalan \n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "X-Launchpad-Export-Date: 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 "" "

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

" msgstr "" -"

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

\n" +"

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

\n" "\n" "

Si 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" diff --git a/src/translations/cs.po b/src/translations/cs.po index 93de9f446..ce5718b27 100644 --- a/src/translations/cs.po +++ b/src/translations/cs.po @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2011-04-11 10:58+0000\n" "Last-Translator: fri \n" "Language-Team: Czech \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" diff --git a/src/translations/cy.po b/src/translations/cy.po index 1e1af14a7..dca1d8052 100644 --- a/src/translations/cy.po +++ b/src/translations/cy.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-08-26 13:46+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Welsh \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 "" diff --git a/src/translations/da.po b/src/translations/da.po index 6f212f9f7..450582796 100644 --- a/src/translations/da.po +++ b/src/translations/da.po @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2011-04-02 22:14+0000\n" "Last-Translator: Jens E. Jensen \n" "Language-Team: Danish \n" -"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/de.po b/src/translations/de.po index 3905b70c0..e76d2401e 100644 --- a/src/translations/de.po +++ b/src/translations/de.po @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2011-04-11 21:24+0000\n" "Last-Translator: Alexander Minges \n" "Language-Team: German \n" -"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de\n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/el.po b/src/translations/el.po index 94e25a986..608510518 100644 --- a/src/translations/el.po +++ b/src/translations/el.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-08 17:06+0000\n" "Last-Translator: firewalker \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 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 τραγουδιών" diff --git a/src/translations/en.po b/src/translations/en.po index e20809f8c..6827ad66e 100644 --- a/src/translations/en.po +++ b/src/translations/en.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-12-25 04:49+0000\n" "Last-Translator: David Sansome \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 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 "" diff --git a/src/translations/en_CA.po b/src/translations/en_CA.po index ac7cd533d..f75d32997 100644 --- a/src/translations/en_CA.po +++ b/src/translations/en_CA.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-02-15 16:06+0000\n" "Last-Translator: David Sansome \n" "Language-Team: English (Canada) \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/en_GB.po b/src/translations/en_GB.po index 927d70c17..3d587c0a1 100644 --- a/src/translations/en_GB.po +++ b/src/translations/en_GB.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-02-15 16:29+0000\n" "Last-Translator: David Sansome \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 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 "" diff --git a/src/translations/eo.po b/src/translations/eo.po index 0dc358569..032e5cef1 100644 --- a/src/translations/eo.po +++ b/src/translations/eo.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-05 08:07+0000\n" "Last-Translator: Michael Moroni \n" "Language-Team: Esperanto \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 "" diff --git a/src/translations/es.po b/src/translations/es.po index 90351e541..3b01df873 100644 --- a/src/translations/es.po +++ b/src/translations/es.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-06 11:49+0000\n" "Last-Translator: Fitoschido \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/et.po b/src/translations/et.po index 567ad660a..20e4389b1 100644 --- a/src/translations/et.po +++ b/src/translations/et.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-03-02 09:32+0000\n" "Last-Translator: lyyser \n" "Language-Team: Estonian \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 "" diff --git a/src/translations/eu.po b/src/translations/eu.po index 82a3cd67e..1ab77e422 100644 --- a/src/translations/eu.po +++ b/src/translations/eu.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-12-05 20:21+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Basque \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 "" diff --git a/src/translations/fi.po b/src/translations/fi.po index 373544d30..c1c29c864 100644 --- a/src/translations/fi.po +++ b/src/translations/fi.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-10 08:44+0000\n" "Last-Translator: Kristian Polso \n" "Language-Team: Finnish \n" -"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/fr.po b/src/translations/fr.po index 15fd1a494..875aae134 100644 --- a/src/translations/fr.po +++ b/src/translations/fr.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-12 19:34+0000\n" "Last-Translator: bouchard renaud \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/gl.po b/src/translations/gl.po index 0c8d31a39..b6c3da3c0 100644 --- a/src/translations/gl.po +++ b/src/translations/gl.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-03 07:12+0000\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: Galician \n" -"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" "X-Launchpad-Export-Date: 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 "" "

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

" msgstr "" -"

As fichas de substitución comezan con %, por exemplo: %artist %album " -"%title

\n" +"

As fichas de substitución comezan con %, por exemplo: %artist %album %" +"title

\n" "

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.

" @@ -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 "" diff --git a/src/translations/he.po b/src/translations/he.po index 24ecddf20..62f9520be 100644 --- a/src/translations/he.po +++ b/src/translations/he.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-02-15 15:55+0000\n" "Last-Translator: Ofir Klinger \n" "Language-Team: Hebrew \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 שירים" diff --git a/src/translations/hi.po b/src/translations/hi.po index 6c1fe5942..81b9f9d1a 100644 --- a/src/translations/hi.po +++ b/src/translations/hi.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-11-22 19:42+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi \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 "" diff --git a/src/translations/hr.po b/src/translations/hr.po index 6df6b7eca..7770b5b24 100644 --- a/src/translations/hr.po +++ b/src/translations/hr.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-09 15:52+0000\n" "Last-Translator: gogo \n" "Language-Team: Croatian \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" diff --git a/src/translations/hu.po b/src/translations/hu.po index e20b11d41..379b09368 100644 --- a/src/translations/hu.po +++ b/src/translations/hu.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-09 12:21+0000\n" "Last-Translator: ntomka \n" "Language-Team: Hungarian \n" -"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/hy.po b/src/translations/hy.po index f90e4cc82..1f7dfa68c 100644 --- a/src/translations/hy.po +++ b/src/translations/hy.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-06 10:49+0000\n" "Last-Translator: David M. Coe \n" "Language-Team: Armenian \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 "" diff --git a/src/translations/is.po b/src/translations/is.po index 6f553324a..0b233d1ea 100644 --- a/src/translations/is.po +++ b/src/translations/is.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-03-14 09:09+0000\n" "Last-Translator: Helgi Páll Jónsson \n" "Language-Team: Icelandic \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 "" diff --git a/src/translations/it.po b/src/translations/it.po index 96f0d7fa5..272669617 100644 --- a/src/translations/it.po +++ b/src/translations/it.po @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2011-04-09 09:37+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/ja.po b/src/translations/ja.po index 92496bd20..8201bf47c 100644 --- a/src/translations/ja.po +++ b/src/translations/ja.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-02-15 15:49+0000\n" "Last-Translator: David Sansome \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 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 曲削除" diff --git a/src/translations/kk.po b/src/translations/kk.po index 990315aca..b8af72d02 100644 --- a/src/translations/kk.po +++ b/src/translations/kk.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2010-12-22 18:08+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Kazakh \n" -"Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: kk\n" "X-Launchpad-Export-Date: 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 "" diff --git a/src/translations/lt.po b/src/translations/lt.po index 0057c5a26..8e67beaff 100644 --- a/src/translations/lt.po +++ b/src/translations/lt.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-05 14:22+0000\n" "Last-Translator: Liudas Ališauskas \n" "Language-Team: Lithuanian \n" -"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/lv.po b/src/translations/lv.po index 97e26b0cf..9481f6bc3 100644 --- a/src/translations/lv.po +++ b/src/translations/lv.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-01-10 15:29+0000\n" "Last-Translator: uGGA \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 "" diff --git a/src/translations/ms.po b/src/translations/ms.po index 4dbe2b100..0aaecba69 100644 --- a/src/translations/ms.po +++ b/src/translations/ms.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-10 16:17+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Malay \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 "" diff --git a/src/translations/nb.po b/src/translations/nb.po index 3b1c51f78..011b86d0c 100644 --- a/src/translations/nb.po +++ b/src/translations/nb.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-02-15 16:31+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Norwegian Bokmal \n" -"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" "X-Launchpad-Export-Date: 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 "" diff --git a/src/translations/nl.po b/src/translations/nl.po index 0203ce3e1..d3ebbad7c 100644 --- a/src/translations/nl.po +++ b/src/translations/nl.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-12 21:14+0000\n" "Last-Translator: Cugel \n" "Language-Team: Dutch \n" -"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/oc.po b/src/translations/oc.po index f33f84118..a19c2645c 100644 --- a/src/translations/oc.po +++ b/src/translations/oc.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-02-15 16:28+0000\n" "Last-Translator: Cédric VALMARY (Tot en òc) \n" "Language-Team: Occitan (post 1500) \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 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 "" diff --git a/src/translations/pa.po b/src/translations/pa.po index e6dbed23a..1fafaf8be 100644 --- a/src/translations/pa.po +++ b/src/translations/pa.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-03-09 07:23+0000\n" "Last-Translator: Harmanpreet Singh Gill \n" "Language-Team: Punjabi \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 "" diff --git a/src/translations/pl.po b/src/translations/pl.po index 17b87bb0c..24ac77426 100644 --- a/src/translations/pl.po +++ b/src/translations/pl.po @@ -10,10 +10,10 @@ msgstr "" "PO-Revision-Date: 2011-04-02 16:43+0000\n" "Last-Translator: Paweł Bara \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" diff --git a/src/translations/pt.po b/src/translations/pt.po index ab9bd7a2c..91813bf93 100644 --- a/src/translations/pt.po +++ b/src/translations/pt.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-10 01:16+0000\n" "Last-Translator: Sérgio Marques \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" diff --git a/src/translations/pt_BR.po b/src/translations/pt_BR.po index 9af5fd312..bc3add66e 100644 --- a/src/translations/pt_BR.po +++ b/src/translations/pt_BR.po @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2011-04-08 01:46+0000\n" "Last-Translator: Aluísio Augusto Silva Gonçalves \n" "Language-Team: Brazilian Portuguese \n" -"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/ro.po b/src/translations/ro.po index 982c23413..14bc70f1a 100644 --- a/src/translations/ro.po +++ b/src/translations/ro.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-11 20:16+0000\n" "Last-Translator: Daniela Barcan \n" "Language-Team: Romanian \n" -"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/ru.po b/src/translations/ru.po index 77c07c6d0..6cb75ec76 100644 --- a/src/translations/ru.po +++ b/src/translations/ru.po @@ -10,10 +10,10 @@ msgstr "" "PO-Revision-Date: 2011-04-12 12:34+0000\n" "Last-Translator: Chubakur \n" "Language-Team: Russian \n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" "X-Launchpad-Export-Date: 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 композиций" diff --git a/src/translations/sk.po b/src/translations/sk.po index 1d8be8a0d..29bd8c7c7 100644 --- a/src/translations/sk.po +++ b/src/translations/sk.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-09 11:31+0000\n" "Last-Translator: DAG Software \n" "Language-Team: \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 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í" diff --git a/src/translations/sl.po b/src/translations/sl.po index 0fd3983bc..88e6e919c 100644 --- a/src/translations/sl.po +++ b/src/translations/sl.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-03-31 13:37+0000\n" "Last-Translator: R33D3M33R \n" "Language-Team: Slovenian \n" -"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/sr.po b/src/translations/sr.po index fc6abf29a..fb4c8fbf2 100644 --- a/src/translations/sr.po +++ b/src/translations/sr.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-02 20:19+0000\n" "Last-Translator: Punky \n" "Language-Team: Serbian \n" -"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" "X-Launchpad-Export-Date: 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 песама" diff --git a/src/translations/sv.po b/src/translations/sv.po index b80378dc5..02bf2295a 100644 --- a/src/translations/sv.po +++ b/src/translations/sv.po @@ -12,10 +12,10 @@ msgstr "" "Last-Translator: Fredrik Andersson \n" "Language-Team: Launchpad Swedish Translators \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" diff --git a/src/translations/tr.po b/src/translations/tr.po index 4eeb9fde7..b3adec9ab 100644 --- a/src/translations/tr.po +++ b/src/translations/tr.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-10 12:51+0000\n" "Last-Translator: Hamit Selahattin Naiboğlu \n" "Language-Team: Turkish \n" -"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" "X-Launchpad-Export-Date: 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" diff --git a/src/translations/translations.pot b/src/translations/translations.pot index 43985aa4e..4dba1a79d 100644 --- a/src/translations/translations.pot +++ b/src/translations/translations.pot @@ -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 "" diff --git a/src/translations/uk.po b/src/translations/uk.po index 120778b88..08be0d516 100644 --- a/src/translations/uk.po +++ b/src/translations/uk.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-10 01:28+0000\n" "Last-Translator: Sergiy Gavrylov \n" "Language-Team: Ukrainian \n" -"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" "X-Launchpad-Export-Date: 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 композицій" diff --git a/src/translations/vi.po b/src/translations/vi.po index d0e98f290..bc01238eb 100644 --- a/src/translations/vi.po +++ b/src/translations/vi.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-04-09 14:39+0000\n" "Last-Translator: Lê Trường An \n" "Language-Team: Vietnamese \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" diff --git a/src/translations/zh_CN.po b/src/translations/zh_CN.po index ff12da9cb..bc403090b 100644 --- a/src/translations/zh_CN.po +++ b/src/translations/zh_CN.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-03-08 11:50+0000\n" "Last-Translator: Lele Long \n" "Language-Team: Chinese (simplified) \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 歌" diff --git a/src/translations/zh_TW.po b/src/translations/zh_TW.po index 37ad11535..cec16eb3b 100644 --- a/src/translations/zh_TW.po +++ b/src/translations/zh_TW.po @@ -11,10 +11,10 @@ msgstr "" "PO-Revision-Date: 2011-02-15 16:35+0000\n" "Last-Translator: David Sansome \n" "Language-Team: Chinese (Traditional) \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Launchpad-Export-Date: 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 歌"