From b8ee548eb495f53d3509fd41c832ddf74c2ff964 Mon Sep 17 00:00:00 2001 From: David Sansome Date: Sun, 27 Nov 2011 15:01:10 +0000 Subject: [PATCH] Rename the existing "Shuffle by album" mode to "Shuffle tracks in this album", and add a new "Shuffle albums" mode that plays all the tracks in each album sequentially, but then jumps to a different random album afterwards. Fixes issue 1152 --- src/core/song.cpp | 8 + src/core/song.h | 5 + src/playlist/playlist.cpp | 83 +- src/playlist/playlistsequence.cpp | 22 +- src/playlist/playlistsequence.h | 3 +- src/playlist/playlistsequence.ui | 12 +- src/translations/translations.pot | 1210 +++++++++++++++-------------- src/widgets/osd.cpp | 7 +- 8 files changed, 756 insertions(+), 594 deletions(-) diff --git a/src/core/song.cpp b/src/core/song.cpp index 2e1f58628..b1e7ca162 100644 --- a/src/core/song.cpp +++ b/src/core/song.cpp @@ -53,6 +53,7 @@ #include #include +#include #include #include #include @@ -1359,6 +1360,13 @@ bool Song::IsOnSameAlbum(const Song& other) const { return album() == other.album() && artist() == other.artist(); } +QString Song::AlbumKey() const { + return QString("%1|%2|%3").arg( + is_compilation() ? "_compilation" : artist(), + has_cue() ? cue_path() : "", + album()); +} + void Song::ToXesam(QVariantMap* map) const { using mpris::AddMetadata; using mpris::AddMetadataAsList; diff --git a/src/core/song.h b/src/core/song.h index ee3396261..cc8ad2f0d 100644 --- a/src/core/song.h +++ b/src/core/song.h @@ -292,6 +292,11 @@ class Song { bool operator==(const Song& other) const; + // Two songs that are on the same album will have the same AlbumKey. It is + // more efficient to use IsOnSameAlbum, but this function can be used when + // you need to hash the key to do fast lookups. + QString AlbumKey() const; + private: void GuessFileType(TagLib::FileRef* fileref); static bool Save(const Song& song); diff --git a/src/playlist/playlist.cpp b/src/playlist/playlist.cpp index f76606017..f3862343a 100644 --- a/src/playlist/playlist.cpp +++ b/src/playlist/playlist.cpp @@ -375,7 +375,7 @@ int Playlist::NextVirtualIndex(int i) const { PlaylistSequence::RepeatMode repeat_mode = playlist_sequence_->repeat_mode(); PlaylistSequence::ShuffleMode shuffle_mode = playlist_sequence_->shuffle_mode(); bool album_only = repeat_mode == PlaylistSequence::Repeat_Album || - shuffle_mode == PlaylistSequence::Shuffle_Album; + shuffle_mode == PlaylistSequence::Shuffle_InsideAlbum; // This one's easy - if we have to repeat the current track then just return i if (repeat_mode == PlaylistSequence::Repeat_Track) { @@ -415,7 +415,7 @@ int Playlist::PreviousVirtualIndex(int i) const { PlaylistSequence::RepeatMode repeat_mode = playlist_sequence_->repeat_mode(); PlaylistSequence::ShuffleMode shuffle_mode = playlist_sequence_->shuffle_mode(); bool album_only = repeat_mode == PlaylistSequence::Repeat_Album || - shuffle_mode == PlaylistSequence::Shuffle_Album; + shuffle_mode == PlaylistSequence::Shuffle_InsideAlbum; // This one's easy - if we have to repeat the current track then just return i if (repeat_mode == PlaylistSequence::Repeat_Track) { @@ -1617,17 +1617,84 @@ void Playlist::Shuffle() { Save(); } +namespace { +bool AlbumShuffleComparator(const QMap& album_key_positions, + const QMap& album_keys, + int left, int right) { + const int left_pos = album_key_positions[album_keys[left]]; + const int right_pos = album_key_positions[album_keys[right]]; + + if (left_pos == right_pos) + return left < right; + return left_pos < right_pos; +} +} + void Playlist::ReshuffleIndices() { - if (!is_shuffled_) { + if (playlist_sequence_->shuffle_mode() == PlaylistSequence::Shuffle_Off) { + // No shuffling - sort the virtual item list normally. std::sort(virtual_items_.begin(), virtual_items_.end()); if (current_row() != -1) current_virtual_index_ = virtual_items_.indexOf(current_row()); - } else { - QList::iterator begin = virtual_items_.begin(); - if (current_virtual_index_ != -1) - std::advance(begin, current_virtual_index_ + 1); + return; + } - std::random_shuffle(begin, virtual_items_.end()); + // If the user is already playing a song, advance the begin iterator to + // only shuffle items that haven't been played yet. + QList::iterator begin = virtual_items_.begin(); + QList::iterator end = virtual_items_.end(); + if (current_virtual_index_ != -1) + std::advance(begin, current_virtual_index_ + 1); + + switch (playlist_sequence_->shuffle_mode()) { + case PlaylistSequence::Shuffle_Off: + // Handled above. + break; + + case PlaylistSequence::Shuffle_All: + case PlaylistSequence::Shuffle_InsideAlbum: + std::random_shuffle(begin, end); + break; + + case PlaylistSequence::Shuffle_Albums: { + QMap album_keys; // real index -> key + QSet album_key_set; // unique keys + + // Find all the unique albums in the playlist + for (QList::iterator it = begin ; it != end ; ++it) { + const int index = *it; + const QString key = items_[index]->Metadata().AlbumKey(); + album_keys[index] = key; + album_key_set << key; + } + + // Shuffle them + QStringList shuffled_album_keys = album_key_set.toList(); + std::random_shuffle(shuffled_album_keys.begin(), + shuffled_album_keys.end()); + + // If the user is currently playing a song, force its album to be first. + if (current_virtual_index_ != -1) { + const QString key = items_[current_row()]->Metadata().AlbumKey(); + const int pos = shuffled_album_keys.indexOf(key); + if (pos >= 1) { + std::swap(shuffled_album_keys[0], shuffled_album_keys[pos]); + } + } + + // Create album key -> position mapping for fast lookup + QMap album_key_positions; + for (int i=0 ; iaddAction(ui_->action_shuffle_off); shuffle_group->addAction(ui_->action_shuffle_all); - shuffle_group->addAction(ui_->action_shuffle_album); + shuffle_group->addAction(ui_->action_shuffle_inside_album); + shuffle_group->addAction(ui_->action_shuffle_albums); shuffle_menu_->addActions(shuffle_group->actions()); ui_->shuffle->setMenu(shuffle_menu_); @@ -120,8 +121,9 @@ void PlaylistSequence::RepeatActionTriggered(QAction* action) { void PlaylistSequence::ShuffleActionTriggered(QAction* action) { ShuffleMode mode = Shuffle_Off; - if (action == ui_->action_shuffle_all) mode = Shuffle_All; - if (action == ui_->action_shuffle_album) mode = Shuffle_Album; + if (action == ui_->action_shuffle_all) mode = Shuffle_All; + if (action == ui_->action_shuffle_inside_album) mode = Shuffle_InsideAlbum; + if (action == ui_->action_shuffle_albums) mode = Shuffle_Albums; SetShuffleMode(mode); } @@ -148,9 +150,10 @@ void PlaylistSequence::SetShuffleMode(ShuffleMode mode) { ui_->shuffle->setChecked(mode != Shuffle_Off); switch (mode) { - case Shuffle_Off: ui_->action_shuffle_off->setChecked(true); break; - case Shuffle_All: ui_->action_shuffle_all->setChecked(true); break; - case Shuffle_Album: ui_->action_shuffle_album->setChecked(true); break; + case Shuffle_Off: ui_->action_shuffle_off->setChecked(true); break; + case Shuffle_All: ui_->action_shuffle_all->setChecked(true); break; + case Shuffle_InsideAlbum: ui_->action_shuffle_inside_album->setChecked(true); break; + case Shuffle_Albums: ui_->action_shuffle_albums->setChecked(true); break; } @@ -184,9 +187,10 @@ void PlaylistSequence::CycleShuffleMode() { ShuffleMode mode = Shuffle_Off; //we cycle through the shuffle modes switch (shuffle_mode()) { - case Shuffle_Off: mode = Shuffle_All; break; - case Shuffle_All: mode = Shuffle_Album; break; - case Shuffle_Album: break; + case Shuffle_Off: mode = Shuffle_All; break; + case Shuffle_All: mode = Shuffle_InsideAlbum; break; + case Shuffle_InsideAlbum: mode = Shuffle_Albums; break; + case Shuffle_Albums: break; } SetShuffleMode(mode); diff --git a/src/playlist/playlistsequence.h b/src/playlist/playlistsequence.h index 37c2270bf..cfdae520d 100644 --- a/src/playlist/playlistsequence.h +++ b/src/playlist/playlistsequence.h @@ -44,7 +44,8 @@ class PlaylistSequence : public QWidget { enum ShuffleMode { Shuffle_Off = 0, Shuffle_All = 1, - Shuffle_Album = 2, + Shuffle_InsideAlbum = 2, + Shuffle_Albums = 3, }; static const char* kSettingsGroup; diff --git a/src/playlist/playlistsequence.ui b/src/playlist/playlistsequence.ui index 7f455d62d..9857c950a 100644 --- a/src/playlist/playlistsequence.ui +++ b/src/playlist/playlistsequence.ui @@ -109,12 +109,12 @@ Don't shuffle - + true - Shuffle by album + Shuffle tracks in this album @@ -125,6 +125,14 @@ Shuffle all + + + true + + + Shuffle albums + + diff --git a/src/translations/translations.pot b/src/translations/translations.pot index d8b30e0ec..5cce59dff 100644 --- a/src/translations/translations.pot +++ b/src/translations/translations.pot @@ -9,27 +9,33 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ui_transcoderoptionsaac.h:130 ui_transcoderoptionsmp3.h:195 -#: ui_transcoderoptionsspeex.h:220 ui_transcoderoptionsspeex.h:223 -#: ui_transcoderoptionsvorbis.h:205 ui_transcoderoptionsvorbis.h:208 -#: ui_transcoderoptionsvorbis.h:211 ui_transcoderoptionswma.h:80 +#: ../bin/src/ui_transcoderoptionsaac.h:130 +#: ../bin/src/ui_transcoderoptionsmp3.h:195 +#: ../bin/src/ui_transcoderoptionsspeex.h:220 +#: ../bin/src/ui_transcoderoptionsspeex.h:223 +#: ../bin/src/ui_transcoderoptionsvorbis.h:205 +#: ../bin/src/ui_transcoderoptionsvorbis.h:208 +#: ../bin/src/ui_transcoderoptionsvorbis.h:211 +#: ../bin/src/ui_transcoderoptionswma.h:80 msgid " kbps" msgstr "" -#: ui_songinfosettingspage.h:186 ui_playbacksettingspage.h:265 -#: ui_playbacksettingspage.h:285 +#: ../bin/src/ui_songinfosettingspage.h:186 +#: ../bin/src/ui_playbacksettingspage.h:265 +#: ../bin/src/ui_playbacksettingspage.h:285 msgid " ms" msgstr "" -#: ui_songinfosettingspage.h:182 +#: ../bin/src/ui_songinfosettingspage.h:182 msgid " pt" msgstr "" -#: ui_notificationssettingspage.h:404 ui_visualisationselector.h:116 +#: ../bin/src/ui_notificationssettingspage.h:404 +#: ../bin/src/ui_visualisationselector.h:116 msgid " seconds" msgstr "" -#: ui_querysortpage.h:143 +#: ../bin/src/ui_querysortpage.h:143 msgid " songs" msgstr "" @@ -105,17 +111,17 @@ msgid "%L1 total plays" msgstr "" #: transcoder/transcodedialog.cpp:198 -#, c-format +#, c-format, qt-plural-format msgid "%n failed" msgstr "" #: transcoder/transcodedialog.cpp:193 -#, c-format +#, c-format, qt-plural-format msgid "%n finished" msgstr "" #: transcoder/transcodedialog.cpp:188 -#, c-format +#, c-format, qt-plural-format msgid "%n remaining" msgstr "" @@ -127,15 +133,15 @@ msgstr "" msgid "&Center" msgstr "" -#: ui_globalshortcutssettingspage.h:178 +#: ../bin/src/ui_globalshortcutssettingspage.h:178 msgid "&Custom" msgstr "" -#: ui_mainwindow.h:702 +#: ../bin/src/ui_mainwindow.h:702 msgid "&Extras" msgstr "" -#: ui_mainwindow.h:701 +#: ../bin/src/ui_mainwindow.h:701 msgid "&Help" msgstr "" @@ -152,23 +158,23 @@ msgstr "" msgid "&Left" msgstr "" -#: ui_mainwindow.h:699 +#: ../bin/src/ui_mainwindow.h:699 msgid "&Music" msgstr "" -#: ui_globalshortcutssettingspage.h:176 +#: ../bin/src/ui_globalshortcutssettingspage.h:176 msgid "&None" msgstr "" -#: ui_mainwindow.h:700 +#: ../bin/src/ui_mainwindow.h:700 msgid "&Playlist" msgstr "" -#: ui_mainwindow.h:637 +#: ../bin/src/ui_mainwindow.h:637 msgid "&Quit" msgstr "" -#: ui_mainwindow.h:673 +#: ../bin/src/ui_mainwindow.h:673 msgid "&Repeat mode" msgstr "" @@ -176,7 +182,7 @@ msgstr "" msgid "&Right" msgstr "" -#: ui_mainwindow.h:672 +#: ../bin/src/ui_mainwindow.h:672 msgid "&Shuffle mode" msgstr "" @@ -184,7 +190,7 @@ msgstr "" msgid "&Stretch columns to fit window" msgstr "" -#: ui_mainwindow.h:703 +#: ../bin/src/ui_mainwindow.h:703 msgid "&Tools" msgstr "" @@ -192,8 +198,8 @@ msgstr "" msgid "(different across multiple songs)" msgstr "" -#: ui_globalsearchpopup.h:104 ui_globalsearchpopup.h:105 -#: ui_globalsearchpopup.h:106 ui_globalsearchpopup.h:107 +#: ../bin/src/ui_globalsearchpopup.h:104 ../bin/src/ui_globalsearchpopup.h:105 +#: ../bin/src/ui_globalsearchpopup.h:106 ../bin/src/ui_globalsearchpopup.h:107 msgid "..." msgstr "" @@ -201,7 +207,7 @@ msgstr "" msgid "...and all the Amarok contributors" msgstr "" -#: ui_trackslider.h:70 ui_trackslider.h:74 +#: ../bin/src/ui_trackslider.h:70 ../bin/src/ui_trackslider.h:74 msgid "0:00:00" msgstr "" @@ -213,7 +219,8 @@ msgstr "" msgid "1 track" msgstr "" -#: ui_magnatunedownloaddialog.h:143 ui_magnatunesettingspage.h:170 +#: ../bin/src/ui_magnatunedownloaddialog.h:143 +#: ../bin/src/ui_magnatunesettingspage.h:170 msgid "128k MP3" msgstr "" @@ -221,11 +228,11 @@ msgstr "" msgid "50 random tracks" msgstr "" -#: ui_digitallyimportedsettingspage.h:165 +#: ../bin/src/ui_digitallyimportedsettingspage.h:165 msgid "Upgrade to Premium now" msgstr "" -#: ui_organisedialog.h:199 +#: ../bin/src/ui_organisedialog.h:199 msgid "" "

Tokens start with %, for example: %artist %album %title

\n" "\n" @@ -256,23 +263,23 @@ msgstr "" msgid "A-Z" msgstr "" -#: ui_transcodersettingspage.h:163 +#: ../bin/src/ui_transcodersettingspage.h:163 msgid "AAC" msgstr "" -#: ui_digitallyimportedsettingspage.h:179 +#: ../bin/src/ui_digitallyimportedsettingspage.h:179 msgid "AAC 128k" msgstr "" -#: ui_digitallyimportedsettingspage.h:171 +#: ../bin/src/ui_digitallyimportedsettingspage.h:171 msgid "AAC 32k" msgstr "" -#: ui_digitallyimportedsettingspage.h:178 +#: ../bin/src/ui_digitallyimportedsettingspage.h:178 msgid "AAC 64k" msgstr "" -#: core/song.cpp:139 +#: core/song.cpp:140 msgid "AIFF" msgstr "" @@ -285,25 +292,27 @@ msgstr "" msgid "About %1" msgstr "" -#: ui_mainwindow.h:658 +#: ../bin/src/ui_mainwindow.h:658 msgid "About Clementine..." msgstr "" -#: ui_mainwindow.h:691 +#: ../bin/src/ui_mainwindow.h:691 msgid "About Qt..." msgstr "" -#: ui_groovesharksettingspage.h:113 ui_magnatunesettingspage.h:151 -#: ui_spotifysettingspage.h:179 ui_remotesettingspage.h:203 -#: ui_lastfmsettingspage.h:145 +#: ../bin/src/ui_groovesharksettingspage.h:113 +#: ../bin/src/ui_magnatunesettingspage.h:151 +#: ../bin/src/ui_spotifysettingspage.h:179 +#: ../bin/src/ui_remotesettingspage.h:203 +#: ../bin/src/ui_lastfmsettingspage.h:145 msgid "Account details" msgstr "" -#: ui_digitallyimportedsettingspage.h:161 +#: ../bin/src/ui_digitallyimportedsettingspage.h:161 msgid "Account details (Premium)" msgstr "" -#: ui_wiimotesettingspage.h:191 +#: ../bin/src/ui_wiimotesettingspage.h:191 msgid "Action" msgstr "" @@ -311,15 +320,15 @@ msgstr "" msgid "Active/deactive Wiiremote" msgstr "" -#: ui_addstreamdialog.h:113 +#: ../bin/src/ui_addstreamdialog.h:113 msgid "Add Stream" msgstr "" -#: ui_notificationssettingspage.h:394 +#: ../bin/src/ui_notificationssettingspage.h:394 msgid "Add a new line if supported by the notification type" msgstr "" -#: ui_wiimotesettingspage.h:193 +#: ../bin/src/ui_wiimotesettingspage.h:193 msgid "Add action" msgstr "" @@ -339,7 +348,7 @@ msgstr "" msgid "Add file" msgstr "" -#: ui_mainwindow.h:662 +#: ../bin/src/ui_mainwindow.h:662 msgid "Add file..." msgstr "" @@ -351,11 +360,11 @@ msgstr "" msgid "Add folder" msgstr "" -#: ui_mainwindow.h:677 +#: ../bin/src/ui_mainwindow.h:677 msgid "Add folder..." msgstr "" -#: ui_librarysettingspage.h:159 +#: ../bin/src/ui_librarysettingspage.h:159 msgid "Add new folder..." msgstr "" @@ -363,55 +372,55 @@ msgstr "" msgid "Add search term" msgstr "" -#: ui_notificationssettingspage.h:361 +#: ../bin/src/ui_notificationssettingspage.h:361 msgid "Add song album tag" msgstr "" -#: ui_notificationssettingspage.h:367 +#: ../bin/src/ui_notificationssettingspage.h:367 msgid "Add song albumartist tag" msgstr "" -#: ui_notificationssettingspage.h:358 +#: ../bin/src/ui_notificationssettingspage.h:358 msgid "Add song artist tag" msgstr "" -#: ui_notificationssettingspage.h:373 +#: ../bin/src/ui_notificationssettingspage.h:373 msgid "Add song composer tag" msgstr "" -#: ui_notificationssettingspage.h:376 +#: ../bin/src/ui_notificationssettingspage.h:376 msgid "Add song disc tag" msgstr "" -#: ui_notificationssettingspage.h:382 +#: ../bin/src/ui_notificationssettingspage.h:382 msgid "Add song genre tag" msgstr "" -#: ui_notificationssettingspage.h:385 +#: ../bin/src/ui_notificationssettingspage.h:385 msgid "Add song length tag" msgstr "" -#: ui_notificationssettingspage.h:388 +#: ../bin/src/ui_notificationssettingspage.h:388 msgid "Add song play count" msgstr "" -#: ui_notificationssettingspage.h:391 +#: ../bin/src/ui_notificationssettingspage.h:391 msgid "Add song skip count" msgstr "" -#: ui_notificationssettingspage.h:364 +#: ../bin/src/ui_notificationssettingspage.h:364 msgid "Add song title tag" msgstr "" -#: ui_notificationssettingspage.h:379 +#: ../bin/src/ui_notificationssettingspage.h:379 msgid "Add song track tag" msgstr "" -#: ui_notificationssettingspage.h:370 +#: ../bin/src/ui_notificationssettingspage.h:370 msgid "Add song year tag" msgstr "" -#: ui_mainwindow.h:664 +#: ../bin/src/ui_mainwindow.h:664 msgid "Add stream..." msgstr "" @@ -427,39 +436,41 @@ msgstr "" msgid "Add to another playlist" msgstr "" -#: globalsearch/globalsearchwidget.cpp:103 ui_albumcovermanager.h:152 +#: globalsearch/globalsearchwidget.cpp:103 +#: ../bin/src/ui_albumcovermanager.h:152 msgid "Add to playlist" msgstr "" -#: ui_behavioursettingspage.h:204 +#: ../bin/src/ui_behavioursettingspage.h:204 msgid "Add to the queue" msgstr "" -#: ui_wiimoteshortcutgrabber.h:123 +#: ../bin/src/ui_wiimoteshortcutgrabber.h:123 msgid "Add wiimotedev action" msgstr "" -#: ui_transcodedialog.h:206 +#: ../bin/src/ui_transcodedialog.h:206 msgid "Add..." msgstr "" -#: ui_libraryfilterwidget.h:123 +#: ../bin/src/ui_libraryfilterwidget.h:123 msgid "Added this month" msgstr "" -#: ui_libraryfilterwidget.h:117 +#: ../bin/src/ui_libraryfilterwidget.h:117 msgid "Added this week" msgstr "" -#: ui_libraryfilterwidget.h:122 +#: ../bin/src/ui_libraryfilterwidget.h:122 msgid "Added this year" msgstr "" -#: ui_libraryfilterwidget.h:116 +#: ../bin/src/ui_libraryfilterwidget.h:116 msgid "Added today" msgstr "" -#: ui_libraryfilterwidget.h:118 ui_libraryfilterwidget.h:120 +#: ../bin/src/ui_libraryfilterwidget.h:118 +#: ../bin/src/ui_libraryfilterwidget.h:120 msgid "Added within three months" msgstr "" @@ -467,27 +478,29 @@ msgstr "" msgid "Adding song to favorites" msgstr "" -#: ui_libraryfilterwidget.h:130 +#: ../bin/src/ui_libraryfilterwidget.h:130 msgid "Advanced grouping..." msgstr "" -#: ui_organisedialog.h:190 +#: ../bin/src/ui_organisedialog.h:190 msgid "After copying..." msgstr "" #: playlist/playlist.cpp:1103 ui/organisedialog.cpp:52 -#: ui/qtsystemtrayicon.cpp:252 ui_groupbydialog.h:129 ui_groupbydialog.h:142 -#: ui_groupbydialog.h:155 ui_albumcoversearcher.h:110 -#: ui_albumcoversearcher.h:112 ui_edittagdialog.h:656 -#: ui_trackselectiondialog.h:209 +#: ui/qtsystemtrayicon.cpp:252 ../bin/src/ui_groupbydialog.h:129 +#: ../bin/src/ui_groupbydialog.h:142 ../bin/src/ui_groupbydialog.h:155 +#: ../bin/src/ui_albumcoversearcher.h:110 +#: ../bin/src/ui_albumcoversearcher.h:112 ../bin/src/ui_edittagdialog.h:656 +#: ../bin/src/ui_trackselectiondialog.h:209 msgid "Album" msgstr "" -#: ui_playbacksettingspage.h:272 +#: ../bin/src/ui_playbacksettingspage.h:272 msgid "Album (ideal loudness for all tracks)" msgstr "" -#: playlist/playlist.cpp:1109 ui/organisedialog.cpp:55 ui_edittagdialog.h:658 +#: playlist/playlist.cpp:1109 ui/organisedialog.cpp:55 +#: ../bin/src/ui_edittagdialog.h:658 msgid "Album artist" msgstr "" @@ -495,7 +508,8 @@ msgstr "" msgid "Album info on jamendo.com..." msgstr "" -#: ui_groupbydialog.h:131 ui_groupbydialog.h:144 ui_groupbydialog.h:157 +#: ../bin/src/ui_groupbydialog.h:131 ../bin/src/ui_groupbydialog.h:144 +#: ../bin/src/ui_groupbydialog.h:157 msgid "Albumartist" msgstr "" @@ -511,7 +525,7 @@ msgstr "" msgid "All Files (*)" msgstr "" -#: ui_mainwindow.h:670 +#: ../bin/src/ui_mainwindow.h:670 msgid "All Glory to the Hypnotoad!" msgstr "" @@ -540,23 +554,24 @@ msgstr "" msgid "All tracks" msgstr "" -#: ui_transcoderoptionsaac.h:140 +#: ../bin/src/ui_transcoderoptionsaac.h:140 msgid "Allow mid/side encoding" msgstr "" -#: ui_transcodedialog.h:214 +#: ../bin/src/ui_transcodedialog.h:214 msgid "Alongside the originals" msgstr "" -#: ui_behavioursettingspage.h:188 +#: ../bin/src/ui_behavioursettingspage.h:188 msgid "Always hide the main window" msgstr "" -#: ui_behavioursettingspage.h:187 +#: ../bin/src/ui_behavioursettingspage.h:187 msgid "Always show the main window" msgstr "" -#: ui_behavioursettingspage.h:196 ui_behavioursettingspage.h:210 +#: ../bin/src/ui_behavioursettingspage.h:196 +#: ../bin/src/ui_behavioursettingspage.h:210 msgid "Always start playing" msgstr "" @@ -592,7 +607,7 @@ msgstr "" msgid "And:" msgstr "" -#: ui_songinfosettingspage.h:180 +#: ../bin/src/ui_songinfosettingspage.h:180 msgid "Appearance" msgstr "" @@ -605,11 +620,11 @@ msgstr "" msgid "Append to current playlist" msgstr "" -#: ui_behavioursettingspage.h:201 +#: ../bin/src/ui_behavioursettingspage.h:201 msgid "Append to the playlist" msgstr "" -#: ui_playbacksettingspage.h:275 +#: ../bin/src/ui_playbacksettingspage.h:275 msgid "Apply compression to prevent clipping" msgstr "" @@ -627,10 +642,12 @@ msgid "Are you sure you want to reset this song's statistics?" msgstr "" #: playlist/playlist.cpp:1102 ui/organisedialog.cpp:53 -#: ui/qtsystemtrayicon.cpp:250 ui_groupbydialog.h:130 ui_groupbydialog.h:143 -#: ui_groupbydialog.h:156 ui_albumcoversearcher.h:106 -#: ui_albumcoversearcher.h:108 ui_edittagdialog.h:654 -#: ui_trackselectiondialog.h:210 ui_lastfmstationdialog.h:96 +#: ui/qtsystemtrayicon.cpp:250 ../bin/src/ui_groupbydialog.h:130 +#: ../bin/src/ui_groupbydialog.h:143 ../bin/src/ui_groupbydialog.h:156 +#: ../bin/src/ui_albumcoversearcher.h:106 +#: ../bin/src/ui_albumcoversearcher.h:108 ../bin/src/ui_edittagdialog.h:654 +#: ../bin/src/ui_trackselectiondialog.h:210 +#: ../bin/src/ui_lastfmstationdialog.h:96 msgid "Artist" msgstr "" @@ -650,11 +667,11 @@ msgstr "" msgid "Artist's initial" msgstr "" -#: ui_transcodedialog.h:209 +#: ../bin/src/ui_transcodedialog.h:209 msgid "Audio format" msgstr "" -#: ui_remotesettingspage.h:210 +#: ../bin/src/ui_remotesettingspage.h:210 msgid "Authenticating..." msgstr "" @@ -668,15 +685,15 @@ msgstr "" msgid "Authors" msgstr "" -#: ui_transcoderoptionsspeex.h:227 +#: ../bin/src/ui_transcoderoptionsspeex.h:227 msgid "Auto" msgstr "" -#: ui_librarysettingspage.h:161 +#: ../bin/src/ui_librarysettingspage.h:161 msgid "Automatic updating" msgstr "" -#: ui_librarysettingspage.h:170 +#: ../bin/src/ui_librarysettingspage.h:170 msgid "Automatically open single categories in the library tree" msgstr "" @@ -684,7 +701,7 @@ msgstr "" msgid "Available" msgstr "" -#: ui_transcoderoptionsspeex.h:221 +#: ../bin/src/ui_transcoderoptionsspeex.h:221 msgid "Average bitrate" msgstr "" @@ -692,23 +709,24 @@ msgstr "" msgid "Average image size" msgstr "" -#: playlist/playlist.cpp:1118 ui/organisedialog.cpp:59 ui_edittagdialog.h:638 +#: playlist/playlist.cpp:1118 ui/organisedialog.cpp:59 +#: ../bin/src/ui_edittagdialog.h:638 msgid "BPM" msgstr "" -#: ui_backgroundstreamssettingspage.h:56 +#: ../bin/src/ui_backgroundstreamssettingspage.h:56 msgid "Background Streams" msgstr "" -#: ui_notificationssettingspage.h:418 +#: ../bin/src/ui_notificationssettingspage.h:418 msgid "Background color" msgstr "" -#: ui_notificationssettingspage.h:417 +#: ../bin/src/ui_notificationssettingspage.h:417 msgid "Background opacity" msgstr "" -#: ui_mainwindow.h:643 +#: ../bin/src/ui_mainwindow.h:643 msgid "Ban" msgstr "" @@ -716,19 +734,19 @@ msgstr "" msgid "Bar analyzer" msgstr "" -#: ui_notificationssettingspage.h:421 +#: ../bin/src/ui_notificationssettingspage.h:421 msgid "Basic Blue" msgstr "" -#: ui_digitallyimportedsettingspage.h:167 +#: ../bin/src/ui_digitallyimportedsettingspage.h:167 msgid "Basic audio type" msgstr "" -#: ui_behavioursettingspage.h:176 +#: ../bin/src/ui_behavioursettingspage.h:176 msgid "Behavior" msgstr "" -#: ui_transcoderoptionsflac.h:83 +#: ../bin/src/ui_transcoderoptionsflac.h:83 msgid "Best" msgstr "" @@ -737,13 +755,14 @@ msgstr "" msgid "Biography from %1" msgstr "" -#: playlist/playlist.cpp:1119 ui_edittagdialog.h:640 +#: playlist/playlist.cpp:1119 ../bin/src/ui_edittagdialog.h:640 msgid "Bit rate" msgstr "" -#: ui/organisedialog.cpp:64 ui_transcoderoptionsaac.h:129 -#: ui_transcoderoptionsmp3.h:194 ui_transcoderoptionsspeex.h:218 -#: ui_transcoderoptionswma.h:79 +#: ui/organisedialog.cpp:64 ../bin/src/ui_transcoderoptionsaac.h:129 +#: ../bin/src/ui_transcoderoptionsmp3.h:194 +#: ../bin/src/ui_transcoderoptionsspeex.h:218 +#: ../bin/src/ui_transcoderoptionswma.h:79 msgid "Bitrate" msgstr "" @@ -751,7 +770,7 @@ msgstr "" msgid "Block analyzer" msgstr "" -#: ui_transcoderoptionsaac.h:141 +#: ../bin/src/ui_transcoderoptionsaac.h:141 msgid "Block type" msgstr "" @@ -759,7 +778,7 @@ msgstr "" msgid "Bluetooth MAC Address" msgstr "" -#: ui_notificationssettingspage.h:414 +#: ../bin/src/ui_notificationssettingspage.h:414 msgid "Body" msgstr "" @@ -767,19 +786,19 @@ msgstr "" msgid "Boom analyzer" msgstr "" -#: ui_magnatunedownloaddialog.h:146 +#: ../bin/src/ui_magnatunedownloaddialog.h:146 msgid "Browse..." msgstr "" -#: ui_playbacksettingspage.h:284 +#: ../bin/src/ui_playbacksettingspage.h:284 msgid "Buffer duration" msgstr "" -#: ui_wiimotesettingspage.h:192 +#: ../bin/src/ui_wiimotesettingspage.h:192 msgid "Buttons" msgstr "" -#: core/song.cpp:142 +#: core/song.cpp:143 msgid "CDDA" msgstr "" @@ -791,7 +810,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: ui_edittagdialog.h:634 +#: ../bin/src/ui_edittagdialog.h:634 msgid "Change cover art" msgstr "" @@ -803,7 +822,7 @@ msgstr "" msgid "Change repeat mode" msgstr "" -#: ui_globalshortcutssettingspage.h:179 +#: ../bin/src/ui_globalshortcutssettingspage.h:179 msgid "Change shortcut..." msgstr "" @@ -823,19 +842,19 @@ msgstr "" msgid "Choose a name for your smart playlist" msgstr "" -#: ui_playbacksettingspage.h:280 +#: ../bin/src/ui_playbacksettingspage.h:280 msgid "Choose automatically" msgstr "" -#: ui_notificationssettingspage.h:426 +#: ../bin/src/ui_notificationssettingspage.h:426 msgid "Choose color..." msgstr "" -#: ui_notificationssettingspage.h:427 +#: ../bin/src/ui_notificationssettingspage.h:427 msgid "Choose font..." msgstr "" -#: ui_visualisationselector.h:113 +#: ../bin/src/ui_visualisationselector.h:113 msgid "Choose from the list" msgstr "" @@ -843,7 +862,7 @@ msgstr "" msgid "Choose how the playlist is sorted and how many songs it will contain." msgstr "" -#: ui_songinfosettingspage.h:188 +#: ../bin/src/ui_songinfosettingspage.h:188 msgid "" "Choose the websites you want Clementine to use when searching for lyrics." msgstr "" @@ -852,25 +871,25 @@ msgstr "" msgid "Classical" msgstr "" -#: widgets/lineedit.cpp:41 ui_queuemanager.h:139 +#: widgets/lineedit.cpp:41 ../bin/src/ui_queuemanager.h:139 msgid "Clear" msgstr "" -#: ui_mainwindow.h:645 ui_mainwindow.h:647 +#: ../bin/src/ui_mainwindow.h:645 ../bin/src/ui_mainwindow.h:647 msgid "Clear playlist" msgstr "" #: smartplaylists/searchtermwidget.cpp:321 -#: visualisations/visualisationcontainer.cpp:196 ui_mainwindow.h:628 -#: ui_visualisationoverlay.h:179 +#: visualisations/visualisationcontainer.cpp:196 +#: ../bin/src/ui_mainwindow.h:628 ../bin/src/ui_visualisationoverlay.h:179 msgid "Clementine" msgstr "" -#: ui_errordialog.h:93 +#: ../bin/src/ui_errordialog.h:93 msgid "Clementine Error" msgstr "" -#: ui_notificationssettingspage.h:422 +#: ../bin/src/ui_notificationssettingspage.h:422 msgid "Clementine Orange" msgstr "" @@ -878,19 +897,19 @@ msgstr "" msgid "Clementine Visualization" msgstr "" -#: ui_deviceproperties.h:376 +#: ../bin/src/ui_deviceproperties.h:376 msgid "" "Clementine can automatically convert the music you copy to this device into " "a format that it can play." msgstr "" -#: ui_remotesettingspage.h:200 remote/remotesettingspage.cpp:152 +#: ../bin/src/ui_remotesettingspage.h:200 remote/remotesettingspage.cpp:152 msgid "" "Clementine can be controlled remotely by an Android phone. To enable this " "feature log in with the same Google account that is configured on your phone." msgstr "" -#: ui_notificationssettingspage.h:396 +#: ../bin/src/ui_notificationssettingspage.h:396 msgid "Clementine can show a message when the track changes." msgstr "" @@ -910,7 +929,7 @@ msgstr "" msgid "Clementine image viewer" msgstr "" -#: ui_trackselectiondialog.h:206 +#: ../bin/src/ui_trackselectiondialog.h:206 msgid "Clementine was unable to find results for this file" msgstr "" @@ -918,7 +937,7 @@ msgstr "" msgid "Click here to add some music" msgstr "" -#: ui_trackslider.h:72 +#: ../bin/src/ui_trackslider.h:72 msgid "Click to toggle between remaining time and total time" msgstr "" @@ -946,7 +965,7 @@ msgstr "" msgid "Color" msgstr "" -#: ui_globalsearchsettingspage.h:170 +#: ../bin/src/ui_globalsearchsettingspage.h:170 msgid "Combine identical results from different sources" msgstr "" @@ -955,20 +974,21 @@ msgid "Comma separated list of class:level, level is 0-3" msgstr "" #: playlist/playlist.cpp:1128 smartplaylists/searchterm.cpp:279 -#: ui/organisedialog.cpp:62 ui_edittagdialog.h:661 +#: ui/organisedialog.cpp:62 ../bin/src/ui_edittagdialog.h:661 msgid "Comment" msgstr "" -#: ui_edittagdialog.h:662 +#: ../bin/src/ui_edittagdialog.h:662 msgid "Complete tags automatically" msgstr "" -#: ui_mainwindow.h:695 +#: ../bin/src/ui_mainwindow.h:695 msgid "Complete tags automatically..." msgstr "" -#: playlist/playlist.cpp:1110 ui/organisedialog.cpp:56 ui_groupbydialog.h:132 -#: ui_groupbydialog.h:145 ui_groupbydialog.h:158 ui_edittagdialog.h:659 +#: playlist/playlist.cpp:1110 ui/organisedialog.cpp:56 +#: ../bin/src/ui_groupbydialog.h:132 ../bin/src/ui_groupbydialog.h:145 +#: ../bin/src/ui_groupbydialog.h:158 ../bin/src/ui_edittagdialog.h:659 msgid "Composer" msgstr "" @@ -984,7 +1004,7 @@ msgstr "" msgid "Configure Magnatune..." msgstr "" -#: ui_globalshortcutssettingspage.h:167 +#: ../bin/src/ui_globalshortcutssettingspage.h:167 msgid "Configure Shortcuts" msgstr "" @@ -997,11 +1017,11 @@ msgid "Configure library..." msgstr "" #: internet/digitallyimportedservicebase.cpp:185 -#: ui_globalsearchsettingspage.h:174 +#: ../bin/src/ui_globalsearchsettingspage.h:174 msgid "Configure..." msgstr "" -#: ui_wiimotesettingspage.h:186 +#: ../bin/src/ui_wiimotesettingspage.h:186 msgid "Connect Wii Remotes using active/deactive action" msgstr "" @@ -1013,15 +1033,15 @@ msgstr "" msgid "Connecting to Spotify" msgstr "" -#: ui_transcoderoptionsmp3.h:196 +#: ../bin/src/ui_transcoderoptionsmp3.h:196 msgid "Constant bitrate" msgstr "" -#: ui_deviceproperties.h:379 +#: ../bin/src/ui_deviceproperties.h:379 msgid "Convert all music" msgstr "" -#: ui_deviceproperties.h:378 +#: ../bin/src/ui_deviceproperties.h:378 msgid "Convert any music that the device can't play" msgstr "" @@ -1073,7 +1093,8 @@ msgstr "" msgid "Couldn't open output file %1" msgstr "" -#: ui_albumcovermanager.h:149 ui_albumcoversearcher.h:104 ui_mainwindow.h:668 +#: ../bin/src/ui_albumcovermanager.h:149 +#: ../bin/src/ui_albumcoversearcher.h:104 ../bin/src/ui_mainwindow.h:668 msgid "Cover Manager" msgstr "" @@ -1108,91 +1129,91 @@ msgstr "" msgid "Create a new Grooveshark playlist" msgstr "" -#: ui_playbacksettingspage.h:262 +#: ../bin/src/ui_playbacksettingspage.h:262 msgid "Cross-fade when changing tracks automatically" msgstr "" -#: ui_playbacksettingspage.h:261 +#: ../bin/src/ui_playbacksettingspage.h:261 msgid "Cross-fade when changing tracks manually" msgstr "" -#: ui_mainwindow.h:640 +#: ../bin/src/ui_mainwindow.h:640 msgid "Ctrl+Alt+V" msgstr "" -#: ui_mainwindow.h:644 +#: ../bin/src/ui_mainwindow.h:644 msgid "Ctrl+B" msgstr "" -#: ui_queuemanager.h:133 +#: ../bin/src/ui_queuemanager.h:133 msgid "Ctrl+Down" msgstr "" -#: ui_mainwindow.h:651 +#: ../bin/src/ui_mainwindow.h:651 msgid "Ctrl+E" msgstr "" -#: ui_mainwindow.h:661 +#: ../bin/src/ui_mainwindow.h:661 msgid "Ctrl+H" msgstr "" -#: ui_mainwindow.h:679 +#: ../bin/src/ui_mainwindow.h:679 msgid "Ctrl+J" msgstr "" -#: ui_queuemanager.h:141 ui_mainwindow.h:649 +#: ../bin/src/ui_queuemanager.h:141 ../bin/src/ui_mainwindow.h:649 msgid "Ctrl+K" msgstr "" -#: ui_mainwindow.h:642 +#: ../bin/src/ui_mainwindow.h:642 msgid "Ctrl+L" msgstr "" -#: ui_mainwindow.h:693 +#: ../bin/src/ui_mainwindow.h:693 msgid "Ctrl+M" msgstr "" -#: ui_mainwindow.h:681 +#: ../bin/src/ui_mainwindow.h:681 msgid "Ctrl+N" msgstr "" -#: ui_mainwindow.h:665 +#: ../bin/src/ui_mainwindow.h:665 msgid "Ctrl+O" msgstr "" -#: ui_mainwindow.h:657 +#: ../bin/src/ui_mainwindow.h:657 msgid "Ctrl+P" msgstr "" -#: ui_mainwindow.h:638 +#: ../bin/src/ui_mainwindow.h:638 msgid "Ctrl+Q" msgstr "" -#: ui_mainwindow.h:683 +#: ../bin/src/ui_mainwindow.h:683 msgid "Ctrl+S" msgstr "" -#: ui_mainwindow.h:663 +#: ../bin/src/ui_mainwindow.h:663 msgid "Ctrl+Shift+A" msgstr "" -#: ui_mainwindow.h:685 +#: ../bin/src/ui_mainwindow.h:685 msgid "Ctrl+Shift+O" msgstr "" -#: ui_mainwindow.h:696 +#: ../bin/src/ui_mainwindow.h:696 msgid "Ctrl+T" msgstr "" -#: ui_queuemanager.h:129 +#: ../bin/src/ui_queuemanager.h:129 msgid "Ctrl+Up" msgstr "" -#: ui/equalizer.cpp:108 ui_lastfmstationdialog.h:98 +#: ui/equalizer.cpp:108 ../bin/src/ui_lastfmstationdialog.h:98 msgid "Custom" msgstr "" -#: ui_notificationssettingspage.h:409 +#: ../bin/src/ui_notificationssettingspage.h:409 msgid "Custom message settings" msgstr "" @@ -1200,7 +1221,7 @@ msgstr "" msgid "Custom radio" msgstr "" -#: ui_notificationssettingspage.h:423 +#: ../bin/src/ui_notificationssettingspage.h:423 msgid "Custom..." msgstr "" @@ -1212,11 +1233,11 @@ msgstr "" msgid "Dance" msgstr "" -#: playlist/playlist.cpp:1126 ui_edittagdialog.h:649 +#: playlist/playlist.cpp:1126 ../bin/src/ui_edittagdialog.h:649 msgid "Date created" msgstr "" -#: playlist/playlist.cpp:1125 ui_edittagdialog.h:648 +#: playlist/playlist.cpp:1125 ../bin/src/ui_edittagdialog.h:648 msgid "Date modified" msgstr "" @@ -1224,7 +1245,7 @@ msgstr "" msgid "Days" msgstr "" -#: ui_globalshortcutssettingspage.h:177 +#: ../bin/src/ui_globalshortcutssettingspage.h:177 msgid "De&fault" msgstr "" @@ -1236,11 +1257,11 @@ msgstr "" msgid "Decrease volume" msgstr "" -#: ui_wiimotesettingspage.h:195 +#: ../bin/src/ui_wiimotesettingspage.h:195 msgid "Defaults" msgstr "" -#: ui_visualisationselector.h:115 +#: ../bin/src/ui_visualisationselector.h:115 msgid "Delay between visualizations" msgstr "" @@ -1262,7 +1283,7 @@ msgstr "" msgid "Delete from disk..." msgstr "" -#: ui/equalizer.cpp:190 ui_equalizer.h:124 +#: ui/equalizer.cpp:190 ../bin/src/ui_equalizer.h:124 msgid "Delete preset" msgstr "" @@ -1270,7 +1291,7 @@ msgstr "" msgid "Delete smart playlist" msgstr "" -#: ui_organisedialog.h:194 +#: ../bin/src/ui_organisedialog.h:194 msgid "Delete the original files" msgstr "" @@ -1286,11 +1307,11 @@ msgstr "" msgid "Dequeue track" msgstr "" -#: ui_transcodedialog.h:211 ui_organisedialog.h:189 +#: ../bin/src/ui_transcodedialog.h:211 ../bin/src/ui_organisedialog.h:189 msgid "Destination" msgstr "" -#: ui_transcodedialog.h:217 +#: ../bin/src/ui_transcodedialog.h:217 msgid "Details..." msgstr "" @@ -1298,7 +1319,7 @@ msgstr "" msgid "Device" msgstr "" -#: ui_deviceproperties.h:368 +#: ../bin/src/ui_deviceproperties.h:368 msgid "Device Properties" msgstr "" @@ -1314,7 +1335,7 @@ msgstr "" msgid "Devices" msgstr "" -#: ui_globalsearchpopup.h:103 +#: ../bin/src/ui_globalsearchpopup.h:103 msgid "Dialog" msgstr "" @@ -1322,44 +1343,46 @@ msgstr "" msgid "Did you mean" msgstr "" -#: ui_digitallyimportedsettingspage.h:160 +#: ../bin/src/ui_digitallyimportedsettingspage.h:160 msgid "Digitally Imported" msgstr "" -#: ui_digitallyimportedsettingspage.h:164 +#: ../bin/src/ui_digitallyimportedsettingspage.h:164 msgid "Digitally Imported password" msgstr "" -#: ui_digitallyimportedsettingspage.h:162 +#: ../bin/src/ui_digitallyimportedsettingspage.h:162 msgid "Digitally Imported username" msgstr "" -#: ui_networkproxysettingspage.h:159 +#: ../bin/src/ui_networkproxysettingspage.h:159 msgid "Direct internet connection" msgstr "" -#: ui_magnatunedownloaddialog.h:145 ui_transcodedialog.h:204 +#: ../bin/src/ui_magnatunedownloaddialog.h:145 +#: ../bin/src/ui_transcodedialog.h:204 msgid "Directory" msgstr "" -#: ui_notificationssettingspage.h:405 +#: ../bin/src/ui_notificationssettingspage.h:405 msgid "Disable duration" msgstr "" -#: ui_notificationssettingspage.h:398 +#: ../bin/src/ui_notificationssettingspage.h:398 msgid "Disabled" msgstr "" -#: playlist/playlist.cpp:1106 ui/organisedialog.cpp:58 ui_edittagdialog.h:655 +#: playlist/playlist.cpp:1106 ui/organisedialog.cpp:58 +#: ../bin/src/ui_edittagdialog.h:655 msgid "Disc" msgstr "" -#: ui_transcoderoptionsspeex.h:234 +#: ../bin/src/ui_transcoderoptionsspeex.h:234 msgid "Discontinuous transmission" msgstr "" #: internet/icecastfilterwidget.cpp:33 library/libraryfilterwidget.cpp:109 -#: ui_librarysettingspage.h:169 +#: ../bin/src/ui_librarysettingspage.h:169 msgid "Display options" msgstr "" @@ -1371,15 +1394,15 @@ msgstr "" msgid "Display the on-screen-display" msgstr "" -#: ui_mainwindow.h:694 +#: ../bin/src/ui_mainwindow.h:694 msgid "Do a full library rescan" msgstr "" -#: ui_deviceproperties.h:377 +#: ../bin/src/ui_deviceproperties.h:377 msgid "Do not convert any music" msgstr "" -#: widgets/osd.cpp:306 ui_playlistsequence.h:99 +#: widgets/osd.cpp:307 ../bin/src/ui_playlistsequence.h:103 msgid "Don't repeat" msgstr "" @@ -1387,7 +1410,7 @@ msgstr "" msgid "Don't show in various artists" msgstr "" -#: widgets/osd.cpp:294 ui_playlistsequence.h:103 +#: widgets/osd.cpp:294 ../bin/src/ui_playlistsequence.h:107 msgid "Don't shuffle" msgstr "" @@ -1399,7 +1422,7 @@ msgstr "" msgid "Double click to open" msgstr "" -#: ui_behavioursettingspage.h:198 +#: ../bin/src/ui_behavioursettingspage.h:198 msgid "Double clicking a song will..." msgstr "" @@ -1407,7 +1430,7 @@ msgstr "" msgid "Download directory" msgstr "" -#: ui_magnatunesettingspage.h:157 +#: ../bin/src/ui_magnatunesettingspage.h:157 msgid "Download membership" msgstr "" @@ -1419,7 +1442,7 @@ msgstr "" msgid "Download this album..." msgstr "" -#: ui_spotifysettingspage.h:186 +#: ../bin/src/ui_spotifysettingspage.h:186 msgid "Download..." msgstr "" @@ -1451,7 +1474,7 @@ msgstr "" msgid "Drive letter" msgstr "" -#: ui_dynamicplaylistcontrols.h:109 +#: ../bin/src/ui_dynamicplaylistcontrols.h:109 msgid "Dynamic mode is on" msgstr "" @@ -1468,19 +1491,19 @@ msgstr "" msgid "Edit tag \"%1\"..." msgstr "" -#: ui_mainwindow.h:654 +#: ../bin/src/ui_mainwindow.h:654 msgid "Edit tag..." msgstr "" -#: ui_edittagdialog.h:663 +#: ../bin/src/ui_edittagdialog.h:663 msgid "Edit tags" msgstr "" -#: ui_edittagdialog.h:632 +#: ../bin/src/ui_edittagdialog.h:632 msgid "Edit track information" msgstr "" -#: library/libraryview.cpp:271 ui_mainwindow.h:650 +#: library/libraryview.cpp:271 ../bin/src/ui_mainwindow.h:650 msgid "Edit track information..." msgstr "" @@ -1492,23 +1515,23 @@ msgstr "" msgid "Edit..." msgstr "" -#: ui_wiimotesettingspage.h:183 +#: ../bin/src/ui_wiimotesettingspage.h:183 msgid "Enable Wii Remote support" msgstr "" -#: ui_equalizer.h:126 +#: ../bin/src/ui_equalizer.h:126 msgid "Enable equalizer" msgstr "" -#: ui_behavioursettingspage.h:179 +#: ../bin/src/ui_behavioursettingspage.h:179 msgid "Enable playlist background image" msgstr "" -#: ui_wiimotesettingspage.h:187 +#: ../bin/src/ui_wiimotesettingspage.h:187 msgid "Enable shortcuts only when Clementine is focused" msgstr "" -#: ui_globalsearchsettingspage.h:171 +#: ../bin/src/ui_globalsearchsettingspage.h:171 msgid "" "Enable sources below to include them in search results. When identical " "results are available from more than one source, ones at the top will take " @@ -1519,19 +1542,19 @@ msgstr "" msgid "Enable/disable Last.fm scrobbling" msgstr "" -#: ui_transcoderoptionsspeex.h:235 +#: ../bin/src/ui_transcoderoptionsspeex.h:235 msgid "Encoding complexity" msgstr "" -#: ui_transcoderoptionsmp3.h:197 +#: ../bin/src/ui_transcoderoptionsmp3.h:197 msgid "Encoding engine quality" msgstr "" -#: ui_transcoderoptionsspeex.h:224 +#: ../bin/src/ui_transcoderoptionsspeex.h:224 msgid "Encoding mode" msgstr "" -#: ui_coverfromurldialog.h:103 +#: ../bin/src/ui_coverfromurldialog.h:103 msgid "Enter a URL to download a cover from the Internet:" msgstr "" @@ -1539,24 +1562,25 @@ msgstr "" msgid "Enter a new name for this playlist" msgstr "" -#: ui_lastfmstationdialog.h:93 +#: ../bin/src/ui_lastfmstationdialog.h:93 msgid "" "Enter an artist or tag to start listening to Last.fm radio." msgstr "" -#: ui_libraryfilterwidget.h:131 ui_albumcovermanager.h:153 +#: ../bin/src/ui_libraryfilterwidget.h:131 +#: ../bin/src/ui_albumcovermanager.h:153 msgid "Enter search terms here" msgstr "" -#: ui_addstreamdialog.h:114 +#: ../bin/src/ui_addstreamdialog.h:114 msgid "Enter the URL of an internet radio stream:" msgstr "" -#: ui_libraryfilterwidget.h:115 +#: ../bin/src/ui_libraryfilterwidget.h:115 msgid "Entire collection" msgstr "" -#: ui_equalizer.h:118 ui_mainwindow.h:675 +#: ../bin/src/ui_equalizer.h:118 ../bin/src/ui_mainwindow.h:675 msgid "Equalizer" msgstr "" @@ -1613,11 +1637,11 @@ msgstr "" msgid "Ever played" msgstr "" -#: ui_playbacksettingspage.h:263 +#: ../bin/src/ui_playbacksettingspage.h:263 msgid "Except between tracks on the same album or in the same CUE sheet" msgstr "" -#: ui_dynamicplaylistcontrols.h:111 +#: ../bin/src/ui_dynamicplaylistcontrols.h:111 msgid "Expand" msgstr "" @@ -1626,48 +1650,50 @@ msgstr "" msgid "Expires on %1" msgstr "" -#: ui_mainwindow.h:659 +#: ../bin/src/ui_mainwindow.h:659 msgid "F1" msgstr "" -#: ui_mainwindow.h:655 +#: ../bin/src/ui_mainwindow.h:655 msgid "F2" msgstr "" -#: ui_mainwindow.h:630 +#: ../bin/src/ui_mainwindow.h:630 msgid "F5" msgstr "" -#: ui_mainwindow.h:632 +#: ../bin/src/ui_mainwindow.h:632 msgid "F6" msgstr "" -#: ui_mainwindow.h:634 +#: ../bin/src/ui_mainwindow.h:634 msgid "F7" msgstr "" -#: ui_mainwindow.h:636 +#: ../bin/src/ui_mainwindow.h:636 msgid "F8" msgstr "" -#: ui_magnatunedownloaddialog.h:140 ui_magnatunesettingspage.h:167 -#: ui_transcodersettingspage.h:161 +#: ../bin/src/ui_magnatunedownloaddialog.h:140 +#: ../bin/src/ui_magnatunesettingspage.h:167 +#: ../bin/src/ui_transcodersettingspage.h:161 msgid "FLAC" msgstr "" -#: ui_playbacksettingspage.h:260 +#: ../bin/src/ui_playbacksettingspage.h:260 msgid "Fade out when stopping a track" msgstr "" -#: ui_playbacksettingspage.h:259 +#: ../bin/src/ui_playbacksettingspage.h:259 msgid "Fading" msgstr "" -#: ui_playbacksettingspage.h:264 +#: ../bin/src/ui_playbacksettingspage.h:264 msgid "Fading duration" msgstr "" -#: ui_transcoderoptionsflac.h:82 ui_transcoderoptionsmp3.h:200 +#: ../bin/src/ui_transcoderoptionsflac.h:82 +#: ../bin/src/ui_transcoderoptionsmp3.h:200 msgid "Fast" msgstr "" @@ -1679,15 +1705,15 @@ msgstr "" msgid "Favourite tracks" msgstr "" -#: ui_albumcovermanager.h:155 +#: ../bin/src/ui_albumcovermanager.h:155 msgid "Fetch Missing Covers" msgstr "" -#: ui_albumcovermanager.h:150 +#: ../bin/src/ui_albumcovermanager.h:150 msgid "Fetch automatically" msgstr "" -#: ui_coversearchstatisticsdialog.h:75 +#: ../bin/src/ui_coversearchstatisticsdialog.h:75 msgid "Fetch completed" msgstr "" @@ -1699,11 +1725,11 @@ msgstr "" msgid "File extension" msgstr "" -#: ui_deviceproperties.h:384 +#: ../bin/src/ui_deviceproperties.h:384 msgid "File formats" msgstr "" -#: playlist/playlist.cpp:1121 ui_edittagdialog.h:650 +#: playlist/playlist.cpp:1121 ../bin/src/ui_edittagdialog.h:650 msgid "File name" msgstr "" @@ -1711,16 +1737,17 @@ msgstr "" msgid "File name (without path)" msgstr "" -#: playlist/playlist.cpp:1123 ui_edittagdialog.h:644 +#: playlist/playlist.cpp:1123 ../bin/src/ui_edittagdialog.h:644 msgid "File size" msgstr "" -#: playlist/playlist.cpp:1124 ui_groupbydialog.h:133 ui_groupbydialog.h:146 -#: ui_groupbydialog.h:159 ui_edittagdialog.h:646 +#: playlist/playlist.cpp:1124 ../bin/src/ui_groupbydialog.h:133 +#: ../bin/src/ui_groupbydialog.h:146 ../bin/src/ui_groupbydialog.h:159 +#: ../bin/src/ui_edittagdialog.h:646 msgid "File type" msgstr "" -#: ui_transcodedialog.h:205 +#: ../bin/src/ui_transcodedialog.h:205 msgid "Filename" msgstr "" @@ -1728,7 +1755,7 @@ msgstr "" msgid "Files" msgstr "" -#: ui_transcodedialog.h:202 +#: ../bin/src/ui_transcodedialog.h:202 msgid "Files to transcode" msgstr "" @@ -1756,23 +1783,23 @@ msgstr "" msgid "Finish" msgstr "" -#: ui_groupbydialog.h:125 +#: ../bin/src/ui_groupbydialog.h:125 msgid "First level" msgstr "" -#: core/song.cpp:132 +#: core/song.cpp:133 msgid "Flac" msgstr "" -#: ui_songinfosettingspage.h:181 +#: ../bin/src/ui_songinfosettingspage.h:181 msgid "Font size" msgstr "" -#: ui_spotifysettingspage.h:184 +#: ../bin/src/ui_spotifysettingspage.h:184 msgid "For licensing reasons Spotify support is in a separate plugin." msgstr "" -#: ui_transcoderoptionsmp3.h:204 +#: ../bin/src/ui_transcoderoptionsmp3.h:204 msgid "Force mono encoding" msgstr "" @@ -1787,20 +1814,26 @@ msgid "" "to rescan all the songs again next time you connect it." msgstr "" -#: ui_globalsearchwidget.h:59 ui_icecastfilterwidget.h:74 -#: ui_internetviewcontainer.h:70 ui_libraryfilterwidget.h:114 -#: ui_libraryviewcontainer.h:59 ui_playlistcontainer.h:143 -#: ui_querysearchpage.h:70 ui_querysortpage.h:136 ui_searchpreview.h:104 -#: ui_searchtermwidget.h:279 ui_wizardfinishpage.h:83 -#: ui_transcoderoptionsaac.h:128 ui_transcoderoptionsflac.h:80 -#: ui_transcoderoptionsmp3.h:190 ui_transcoderoptionsspeex.h:216 -#: ui_transcoderoptionsvorbis.h:201 ui_transcoderoptionswma.h:78 -#: ui_equalizerslider.h:82 ui_fileview.h:106 ui_loginstatewidget.h:171 -#: ui_trackslider.h:69 ui_visualisationoverlay.h:178 +#: ../bin/src/ui_globalsearchwidget.h:59 +#: ../bin/src/ui_icecastfilterwidget.h:74 +#: ../bin/src/ui_internetviewcontainer.h:70 +#: ../bin/src/ui_libraryfilterwidget.h:114 +#: ../bin/src/ui_libraryviewcontainer.h:59 +#: ../bin/src/ui_playlistcontainer.h:143 ../bin/src/ui_querysearchpage.h:70 +#: ../bin/src/ui_querysortpage.h:136 ../bin/src/ui_searchpreview.h:104 +#: ../bin/src/ui_searchtermwidget.h:279 ../bin/src/ui_wizardfinishpage.h:83 +#: ../bin/src/ui_transcoderoptionsaac.h:128 +#: ../bin/src/ui_transcoderoptionsflac.h:80 +#: ../bin/src/ui_transcoderoptionsmp3.h:190 +#: ../bin/src/ui_transcoderoptionsspeex.h:216 +#: ../bin/src/ui_transcoderoptionsvorbis.h:201 +#: ../bin/src/ui_transcoderoptionswma.h:78 ../bin/src/ui_equalizerslider.h:82 +#: ../bin/src/ui_fileview.h:106 ../bin/src/ui_loginstatewidget.h:171 +#: ../bin/src/ui_trackslider.h:69 ../bin/src/ui_visualisationoverlay.h:178 msgid "Form" msgstr "" -#: ui_magnatunedownloaddialog.h:136 +#: ../bin/src/ui_magnatunedownloaddialog.h:136 msgid "Format" msgstr "" @@ -1809,7 +1842,7 @@ msgstr "" msgid "Framerate" msgstr "" -#: ui_transcoderoptionsspeex.h:236 +#: ../bin/src/ui_transcoderoptionsspeex.h:236 msgid "Frames per buffer" msgstr "" @@ -1829,7 +1862,7 @@ msgstr "" msgid "Full Treble" msgstr "" -#: ui_playbacksettingspage.h:276 +#: ../bin/src/ui_playbacksettingspage.h:276 msgid "GStreamer audio engine" msgstr "" @@ -1837,12 +1870,13 @@ msgstr "" msgid "General" msgstr "" -#: ui_notificationssettingspage.h:402 +#: ../bin/src/ui_notificationssettingspage.h:402 msgid "General settings" msgstr "" -#: playlist/playlist.cpp:1108 ui/organisedialog.cpp:61 ui_groupbydialog.h:134 -#: ui_groupbydialog.h:147 ui_groupbydialog.h:160 ui_edittagdialog.h:660 +#: playlist/playlist.cpp:1108 ui/organisedialog.cpp:61 +#: ../bin/src/ui_groupbydialog.h:134 ../bin/src/ui_groupbydialog.h:147 +#: ../bin/src/ui_groupbydialog.h:160 ../bin/src/ui_edittagdialog.h:660 msgid "Genre" msgstr "" @@ -1862,37 +1896,37 @@ msgstr "" msgid "Getting streams" msgstr "" -#: ui_addstreamdialog.h:116 +#: ../bin/src/ui_addstreamdialog.h:116 msgid "Give it a name:" msgstr "" -#: ui_mainwindow.h:686 +#: ../bin/src/ui_mainwindow.h:686 msgid "Go to next playlist tab" msgstr "" -#: ui_mainwindow.h:687 +#: ../bin/src/ui_mainwindow.h:687 msgid "Go to previous playlist tab" msgstr "" -#: ui_remotesettingspage.h:206 +#: ../bin/src/ui_remotesettingspage.h:206 msgid "Google password" msgstr "" -#: ui_remotesettingspage.h:204 +#: ../bin/src/ui_remotesettingspage.h:204 msgid "Google username" msgstr "" #: covers/coversearchstatisticsdialog.cpp:54 ui/albumcovermanager.cpp:431 -#: ui_coversearchstatisticsdialog.h:76 +#: ../bin/src/ui_coversearchstatisticsdialog.h:76 #, qt-format msgid "Got %1 covers out of %2 (%3 failed)" msgstr "" -#: ui_behavioursettingspage.h:190 +#: ../bin/src/ui_behavioursettingspage.h:190 msgid "Grey out non existent songs in my playlists" msgstr "" -#: ui_groovesharksettingspage.h:112 +#: ../bin/src/ui_groovesharksettingspage.h:112 msgid "Grooveshark" msgstr "" @@ -1904,7 +1938,7 @@ msgstr "" msgid "Grooveshark song's URL" msgstr "" -#: ui_groupbydialog.h:124 +#: ../bin/src/ui_groupbydialog.h:124 msgid "Group Library by..." msgstr "" @@ -1912,47 +1946,47 @@ msgstr "" msgid "Group by" msgstr "" -#: ui_libraryfilterwidget.h:127 +#: ../bin/src/ui_libraryfilterwidget.h:127 msgid "Group by Album" msgstr "" -#: ui_libraryfilterwidget.h:124 +#: ../bin/src/ui_libraryfilterwidget.h:124 msgid "Group by Artist" msgstr "" -#: ui_libraryfilterwidget.h:125 +#: ../bin/src/ui_libraryfilterwidget.h:125 msgid "Group by Artist/Album" msgstr "" -#: ui_libraryfilterwidget.h:126 +#: ../bin/src/ui_libraryfilterwidget.h:126 msgid "Group by Artist/Year - Album" msgstr "" -#: ui_libraryfilterwidget.h:128 +#: ../bin/src/ui_libraryfilterwidget.h:128 msgid "Group by Genre/Album" msgstr "" -#: ui_libraryfilterwidget.h:129 +#: ../bin/src/ui_libraryfilterwidget.h:129 msgid "Group by Genre/Artist/Album" msgstr "" -#: ui_networkproxysettingspage.h:163 +#: ../bin/src/ui_networkproxysettingspage.h:163 msgid "HTTP proxy" msgstr "" -#: ui_deviceproperties.h:371 +#: ../bin/src/ui_deviceproperties.h:371 msgid "Hardware information" msgstr "" -#: ui_deviceproperties.h:372 +#: ../bin/src/ui_deviceproperties.h:372 msgid "Hardware information is only available while the device is connected." msgstr "" -#: ui_globalsearchsettingspage.h:168 +#: ../bin/src/ui_globalsearchsettingspage.h:168 msgid "Hide all other search boxes" msgstr "" -#: ui_transcoderoptionsmp3.h:202 +#: ../bin/src/ui_transcoderoptionsmp3.h:202 msgid "High" msgstr "" @@ -1977,11 +2011,11 @@ msgstr "" msgid "Hypnotoad" msgstr "" -#: ui_magnatunesettingspage.h:155 +#: ../bin/src/ui_magnatunesettingspage.h:155 msgid "I don't have a Magnatune account" msgstr "" -#: ui_deviceproperties.h:370 +#: ../bin/src/ui_deviceproperties.h:370 msgid "Icon" msgstr "" @@ -1999,13 +2033,13 @@ msgid "" "work." msgstr "" -#: ui_remotesettingspage.h:209 +#: ../bin/src/ui_remotesettingspage.h:209 msgid "" "If you use the remote on more than one computer, this name will help you " "choose which one to connect to on your phone." msgstr "" -#: ui_organisedialog.h:204 +#: ../bin/src/ui_organisedialog.h:204 msgid "Ignore \"The\" in artist names" msgstr "" @@ -2017,7 +2051,7 @@ msgstr "" msgid "Images (*.png *.jpg *.jpeg *.bmp *.xpm *.pbm *.ppm *.xbm)" msgstr "" -#: ui_wizardfinishpage.h:86 +#: ../bin/src/ui_wizardfinishpage.h:86 msgid "" "In dynamic mode new tracks will be chosen and added to the playlist every " "time a song finishes." @@ -2027,15 +2061,15 @@ msgstr "" msgid "Inbox" msgstr "" -#: ui_notificationssettingspage.h:408 +#: ../bin/src/ui_notificationssettingspage.h:408 msgid "Include album art in the notification" msgstr "" -#: ui_querysearchpage.h:76 +#: ../bin/src/ui_querysearchpage.h:76 msgid "Include all songs" msgstr "" -#: ui_globalsearchsettingspage.h:177 +#: ../bin/src/ui_globalsearchsettingspage.h:177 msgid "Include keyboard shortcut help in the tooltip" msgstr "" @@ -2047,11 +2081,11 @@ msgstr "" msgid "Increase volume" msgstr "" -#: wiimotedev/wiimotesettingspage.cpp:124 ui_deviceproperties.h:373 +#: wiimotedev/wiimotesettingspage.cpp:124 ../bin/src/ui_deviceproperties.h:373 msgid "Information" msgstr "" -#: ui_organisedialog.h:203 +#: ../bin/src/ui_organisedialog.h:203 msgid "Insert..." msgstr "" @@ -2123,7 +2157,7 @@ msgstr "" msgid "Jamendo database" msgstr "" -#: ui_mainwindow.h:678 +#: ../bin/src/ui_mainwindow.h:678 msgid "Jump to the currently playing track" msgstr "" @@ -2133,24 +2167,25 @@ msgid "Keep buttons for %1 second..." msgstr "" #: wiimotedev/wiimoteshortcutgrabber.cpp:73 -#: wiimotedev/wiimoteshortcutgrabber.cpp:117 ui_wiimoteshortcutgrabber.h:127 +#: wiimotedev/wiimoteshortcutgrabber.cpp:117 +#: ../bin/src/ui_wiimoteshortcutgrabber.h:127 #, qt-format msgid "Keep buttons for %1 seconds..." msgstr "" -#: ui_behavioursettingspage.h:178 +#: ../bin/src/ui_behavioursettingspage.h:178 msgid "Keep running in the background when the window is closed" msgstr "" -#: ui_organisedialog.h:193 +#: ../bin/src/ui_organisedialog.h:193 msgid "Keep the original files" msgstr "" -#: ui_mainwindow.h:671 +#: ../bin/src/ui_mainwindow.h:671 msgid "Kittens" msgstr "" -#: ui_behavioursettingspage.h:180 +#: ../bin/src/ui_behavioursettingspage.h:180 msgid "Language" msgstr "" @@ -2170,11 +2205,12 @@ msgstr "" msgid "Large sidebar" msgstr "" -#: library/library.cpp:66 playlist/playlist.cpp:1115 ui_edittagdialog.h:641 +#: library/library.cpp:66 playlist/playlist.cpp:1115 +#: ../bin/src/ui_edittagdialog.h:641 msgid "Last played" msgstr "" -#: ui_lastfmsettingspage.h:144 +#: ../bin/src/ui_lastfmsettingspage.h:144 msgid "Last.fm" msgstr "" @@ -2220,7 +2256,7 @@ msgstr "" msgid "Last.fm is currently busy, please try again in a few minutes" msgstr "" -#: ui_lastfmsettingspage.h:148 +#: ../bin/src/ui_lastfmsettingspage.h:148 msgid "Last.fm password" msgstr "" @@ -2232,7 +2268,7 @@ msgstr "" msgid "Last.fm tags" msgstr "" -#: ui_lastfmsettingspage.h:146 +#: ../bin/src/ui_lastfmsettingspage.h:146 msgid "Last.fm username" msgstr "" @@ -2244,12 +2280,12 @@ msgstr "" msgid "Least favourite tracks" msgstr "" -#: ui_playbacksettingspage.h:282 +#: ../bin/src/ui_playbacksettingspage.h:282 msgid "Leave blank for the default. Examples: \"/dev/dsp\", \"front\", etc." msgstr "" #: playlist/playlist.cpp:1104 ui/organisedialog.cpp:63 -#: ui/qtsystemtrayicon.cpp:255 ui_edittagdialog.h:636 +#: ui/qtsystemtrayicon.cpp:255 ../bin/src/ui_edittagdialog.h:636 msgid "Length" msgstr "" @@ -2257,7 +2293,7 @@ msgstr "" msgid "Library" msgstr "" -#: ui_groupbydialog.h:122 +#: ../bin/src/ui_groupbydialog.h:122 msgid "Library advanced grouping" msgstr "" @@ -2269,7 +2305,7 @@ msgstr "" msgid "Library search" msgstr "" -#: ui_querysortpage.h:140 +#: ../bin/src/ui_querysortpage.h:140 msgid "Limits" msgstr "" @@ -2277,11 +2313,11 @@ msgstr "" msgid "Live" msgstr "" -#: ui_albumcovermanager.h:151 +#: ../bin/src/ui_albumcovermanager.h:151 msgid "Load" msgstr "" -#: ui_coverfromurldialog.h:102 +#: ../bin/src/ui_coverfromurldialog.h:102 msgid "Load cover from URL" msgstr "" @@ -2301,7 +2337,7 @@ msgstr "" msgid "Load playlist" msgstr "" -#: ui_mainwindow.h:684 +#: ../bin/src/ui_mainwindow.h:684 msgid "Load playlist..." msgstr "" @@ -2343,7 +2379,7 @@ msgid "Loading tracks info" msgstr "" #: library/librarymodel.cpp:126 widgets/prettyimage.cpp:168 -#: widgets/widgetfadehelper.cpp:93 ui_searchpreview.h:106 +#: widgets/widgetfadehelper.cpp:93 ../bin/src/ui_searchpreview.h:106 msgid "Loading..." msgstr "" @@ -2351,17 +2387,20 @@ msgstr "" msgid "Loads files/URLs, replacing current playlist" msgstr "" -#: ui_digitallyimportedsettingspage.h:163 ui_groovesharksettingspage.h:116 -#: ui_magnatunesettingspage.h:160 ui_spotifysettingspage.h:182 -#: ui_remotesettingspage.h:205 ui_lastfmsettingspage.h:147 +#: ../bin/src/ui_digitallyimportedsettingspage.h:163 +#: ../bin/src/ui_groovesharksettingspage.h:116 +#: ../bin/src/ui_magnatunesettingspage.h:160 +#: ../bin/src/ui_spotifysettingspage.h:182 +#: ../bin/src/ui_remotesettingspage.h:205 +#: ../bin/src/ui_lastfmsettingspage.h:147 msgid "Login" msgstr "" -#: ui_transcoderoptionsaac.h:137 +#: ../bin/src/ui_transcoderoptionsaac.h:137 msgid "Long term prediction profile (LTP)" msgstr "" -#: ui_mainwindow.h:641 +#: ../bin/src/ui_mainwindow.h:641 msgid "Love" msgstr "" @@ -2378,11 +2417,11 @@ msgstr "" msgid "Low (256x256)" msgstr "" -#: ui_transcoderoptionsaac.h:135 +#: ../bin/src/ui_transcoderoptionsaac.h:135 msgid "Low complexity profile (LC)" msgstr "" -#: ui_songinfosettingspage.h:187 +#: ../bin/src/ui_songinfosettingspage.h:187 msgid "Lyrics" msgstr "" @@ -2391,31 +2430,31 @@ msgstr "" msgid "Lyrics from %1" msgstr "" -#: core/song.cpp:135 ui_transcodersettingspage.h:159 +#: core/song.cpp:136 ../bin/src/ui_transcodersettingspage.h:159 msgid "MP3" msgstr "" -#: ui_digitallyimportedsettingspage.h:177 +#: ../bin/src/ui_digitallyimportedsettingspage.h:177 msgid "MP3 256k" msgstr "" -#: ui_digitallyimportedsettingspage.h:170 +#: ../bin/src/ui_digitallyimportedsettingspage.h:170 msgid "MP3 96k" msgstr "" -#: core/song.cpp:133 +#: core/song.cpp:134 msgid "MP4 AAC" msgstr "" -#: core/song.cpp:134 +#: core/song.cpp:135 msgid "MPC" msgstr "" -#: internet/magnatuneservice.cpp:99 ui_magnatunesettingspage.h:150 +#: internet/magnatuneservice.cpp:99 ../bin/src/ui_magnatunesettingspage.h:150 msgid "Magnatune" msgstr "" -#: ui_magnatunedownloaddialog.h:131 +#: ../bin/src/ui_magnatunedownloaddialog.h:131 msgid "Magnatune Download" msgstr "" @@ -2423,7 +2462,7 @@ msgstr "" msgid "Magnatune download finished" msgstr "" -#: ui_transcoderoptionsaac.h:134 +#: ../bin/src/ui_transcoderoptionsaac.h:134 msgid "Main profile (MAIN)" msgstr "" @@ -2435,7 +2474,7 @@ msgstr "" msgid "Malformed response" msgstr "" -#: ui_networkproxysettingspage.h:160 +#: ../bin/src/ui_networkproxysettingspage.h:160 msgid "Manual proxy configuration" msgstr "" @@ -2443,15 +2482,15 @@ msgstr "" msgid "Manufacturer" msgstr "" -#: ui_querysearchpage.h:74 +#: ../bin/src/ui_querysearchpage.h:74 msgid "Match every search term (AND)" msgstr "" -#: ui_querysearchpage.h:75 +#: ../bin/src/ui_querysearchpage.h:75 msgid "Match one or more search terms (OR)" msgstr "" -#: ui_transcoderoptionsvorbis.h:209 +#: ../bin/src/ui_transcoderoptionsvorbis.h:209 msgid "Maximum bitrate" msgstr "" @@ -2468,11 +2507,11 @@ msgstr "" msgid "Medium (512x512)" msgstr "" -#: ui_magnatunesettingspage.h:152 +#: ../bin/src/ui_magnatunesettingspage.h:152 msgid "Membership type" msgstr "" -#: ui_transcoderoptionsvorbis.h:206 +#: ../bin/src/ui_transcoderoptionsvorbis.h:206 msgid "Minimum bitrate" msgstr "" @@ -2484,7 +2523,7 @@ msgstr "" msgid "Model" msgstr "" -#: ui_librarysettingspage.h:163 +#: ../bin/src/ui_librarysettingspage.h:163 msgid "Monitor the library for changes" msgstr "" @@ -2504,8 +2543,8 @@ msgstr "" msgid "Mount points" msgstr "" -#: ui_globalsearchsettingspage.h:173 ui_queuemanager.h:131 -#: ui_songinfosettingspage.h:190 +#: ../bin/src/ui_globalsearchsettingspage.h:173 +#: ../bin/src/ui_queuemanager.h:131 ../bin/src/ui_songinfosettingspage.h:190 msgid "Move down" msgstr "" @@ -2513,8 +2552,8 @@ msgstr "" msgid "Move to library..." msgstr "" -#: ui_globalsearchsettingspage.h:172 ui_queuemanager.h:127 -#: ui_songinfosettingspage.h:189 +#: ../bin/src/ui_globalsearchsettingspage.h:172 +#: ../bin/src/ui_queuemanager.h:127 ../bin/src/ui_songinfosettingspage.h:189 msgid "Move up" msgstr "" @@ -2522,12 +2561,12 @@ msgstr "" msgid "Music (*.mp3 *.ogg *.flac *.mpc *.m4a *.aac *.wma *.mp4 *.spx *.wav)" msgstr "" -#: ui_librarysettingspage.h:157 +#: ../bin/src/ui_librarysettingspage.h:157 msgid "Music Library" msgstr "" #: core/globalshortcuts.cpp:54 wiimotedev/wiimotesettingspage.cpp:105 -#: ui_mainwindow.h:692 +#: ../bin/src/ui_mainwindow.h:692 msgid "Mute" msgstr "" @@ -2564,16 +2603,18 @@ msgid "My Recommendations" msgstr "" #: internet/groovesharkservice.cpp:1028 ui/equalizer.cpp:172 -#: ui_deviceproperties.h:369 ui_magnatunedownloaddialog.h:135 -#: ui_wizardfinishpage.h:84 ui_globalshortcutssettingspage.h:174 +#: ../bin/src/ui_deviceproperties.h:369 +#: ../bin/src/ui_magnatunedownloaddialog.h:135 +#: ../bin/src/ui_wizardfinishpage.h:84 +#: ../bin/src/ui_globalshortcutssettingspage.h:174 msgid "Name" msgstr "" -#: ui_organisedialog.h:197 +#: ../bin/src/ui_organisedialog.h:197 msgid "Naming options" msgstr "" -#: ui_transcoderoptionsspeex.h:230 +#: ../bin/src/ui_transcoderoptionsspeex.h:230 msgid "Narrow band (NB)" msgstr "" @@ -2581,11 +2622,11 @@ msgstr "" msgid "Neighbors" msgstr "" -#: ui_songinfosettingspage.h:184 +#: ../bin/src/ui_songinfosettingspage.h:184 msgid "Network" msgstr "" -#: ui_networkproxysettingspage.h:157 +#: ../bin/src/ui_networkproxysettingspage.h:157 msgid "Network Proxy" msgstr "" @@ -2597,11 +2638,12 @@ msgstr "" msgid "Never played" msgstr "" -#: ui_behavioursettingspage.h:194 ui_behavioursettingspage.h:208 +#: ../bin/src/ui_behavioursettingspage.h:194 +#: ../bin/src/ui_behavioursettingspage.h:208 msgid "Never start playing" msgstr "" -#: ui/mainwindow.cpp:1417 ui_mainwindow.h:680 +#: ui/mainwindow.cpp:1417 ../bin/src/ui_mainwindow.h:680 msgid "New playlist" msgstr "" @@ -2613,7 +2655,7 @@ msgstr "" msgid "New songs" msgstr "" -#: ui_dynamicplaylistcontrols.h:110 +#: ../bin/src/ui_dynamicplaylistcontrols.h:110 msgid "New tracks will be added automatically." msgstr "" @@ -2626,7 +2668,7 @@ msgid "Next" msgstr "" #: core/globalshortcuts.cpp:50 wiimotedev/wiimotesettingspage.cpp:99 -#: ui_mainwindow.h:635 +#: ../bin/src/ui_mainwindow.h:635 msgid "Next track" msgstr "" @@ -2634,7 +2676,7 @@ msgstr "" msgid "No analyzer" msgstr "" -#: ui_transcoderoptionsaac.h:146 +#: ../bin/src/ui_transcoderoptionsaac.h:146 msgid "No long blocks" msgstr "" @@ -2643,11 +2685,12 @@ msgid "" "No matches found. Clear the search box to show the whole playlist again." msgstr "" -#: ui_transcoderoptionsaac.h:145 +#: ../bin/src/ui_transcoderoptionsaac.h:145 msgid "No short blocks" msgstr "" -#: ui_groupbydialog.h:128 ui_groupbydialog.h:141 ui_groupbydialog.h:154 +#: ../bin/src/ui_groupbydialog.h:128 ../bin/src/ui_groupbydialog.h:141 +#: ../bin/src/ui_groupbydialog.h:154 msgid "None" msgstr "" @@ -2655,11 +2698,11 @@ msgstr "" msgid "None of the selected songs were suitable for copying to a device" msgstr "" -#: ui_transcoderoptionsaac.h:144 +#: ../bin/src/ui_transcoderoptionsaac.h:144 msgid "Normal block type" msgstr "" -#: playlist/playlistsequence.cpp:167 +#: playlist/playlistsequence.cpp:170 msgid "Not available while using a dynamic playlist" msgstr "" @@ -2695,11 +2738,11 @@ msgstr "" msgid "Not mounted - double click to mount" msgstr "" -#: ui_notificationssettingspage.h:397 +#: ../bin/src/ui_notificationssettingspage.h:397 msgid "Notification type" msgstr "" -#: ui_notificationssettingspage.h:356 +#: ../bin/src/ui_notificationssettingspage.h:356 msgid "Notifications" msgstr "" @@ -2711,20 +2754,20 @@ msgstr "" msgid "OSD Preview" msgstr "" -#: core/song.cpp:136 +#: core/song.cpp:137 msgid "Ogg Flac" msgstr "" -#: core/song.cpp:137 +#: core/song.cpp:138 msgid "Ogg Speex" msgstr "" -#: core/song.cpp:138 ui_magnatunedownloaddialog.h:139 -#: ui_magnatunesettingspage.h:166 +#: core/song.cpp:139 ../bin/src/ui_magnatunedownloaddialog.h:139 +#: ../bin/src/ui_magnatunesettingspage.h:166 msgid "Ogg Vorbis" msgstr "" -#: ui_querysortpage.h:142 +#: ../bin/src/ui_querysortpage.h:142 msgid "Only show the first" msgstr "" @@ -2736,25 +2779,26 @@ msgstr "" msgid "Open %1 in browser" msgstr "" -#: ui_mainwindow.h:667 +#: ../bin/src/ui_mainwindow.h:667 msgid "Open &audio CD..." msgstr "" -#: ui_deviceproperties.h:382 +#: ../bin/src/ui_deviceproperties.h:382 msgid "Open device" msgstr "" -#: ui_mainwindow.h:666 +#: ../bin/src/ui_mainwindow.h:666 msgid "Open file..." msgstr "" #: devices/deviceview.cpp:220 internet/internetservice.cpp:73 #: library/libraryview.cpp:247 widgets/fileviewlist.cpp:35 -#: ui_behavioursettingspage.h:203 +#: ../bin/src/ui_behavioursettingspage.h:203 msgid "Open in new playlist" msgstr "" -#: ui_globalshortcutssettingspage.h:169 ui_globalshortcutssettingspage.h:171 +#: ../bin/src/ui_globalshortcutssettingspage.h:169 +#: ../bin/src/ui_globalshortcutssettingspage.h:171 msgid "Open..." msgstr "" @@ -2762,19 +2806,19 @@ msgstr "" msgid "Operation failed" msgstr "" -#: ui_transcoderoptionsmp3.h:193 +#: ../bin/src/ui_transcoderoptionsmp3.h:193 msgid "Optimize for bitrate" msgstr "" -#: ui_transcoderoptionsmp3.h:191 +#: ../bin/src/ui_transcoderoptionsmp3.h:191 msgid "Optimize for quality" msgstr "" -#: ui_transcodedialog.h:210 +#: ../bin/src/ui_transcodedialog.h:210 msgid "Options..." msgstr "" -#: ui_organisedialog.h:188 +#: ../bin/src/ui_organisedialog.h:188 msgid "Organise Files" msgstr "" @@ -2794,19 +2838,19 @@ msgstr "" msgid "Other options" msgstr "" -#: ui_playbacksettingspage.h:283 +#: ../bin/src/ui_playbacksettingspage.h:283 msgid "Output device" msgstr "" -#: ui_transcodedialog.h:208 +#: ../bin/src/ui_transcodedialog.h:208 msgid "Output options" msgstr "" -#: ui_playbacksettingspage.h:277 +#: ../bin/src/ui_playbacksettingspage.h:277 msgid "Output plugin" msgstr "" -#: ui_organisedialog.h:207 +#: ../bin/src/ui_organisedialog.h:207 msgid "Overwrite existing files" msgstr "" @@ -2818,8 +2862,10 @@ msgstr "" msgid "Party" msgstr "" -#: ui_groovesharksettingspage.h:115 ui_magnatunesettingspage.h:161 -#: ui_spotifysettingspage.h:181 ui_networkproxysettingspage.h:169 +#: ../bin/src/ui_groovesharksettingspage.h:115 +#: ../bin/src/ui_magnatunesettingspage.h:161 +#: ../bin/src/ui_spotifysettingspage.h:181 +#: ../bin/src/ui_networkproxysettingspage.h:169 msgid "Password" msgstr "" @@ -2847,11 +2893,11 @@ msgstr "" #: core/globalshortcuts.cpp:45 ui/mainwindow.cpp:506 ui/mainwindow.cpp:841 #: ui/mainwindow.cpp:860 ui/mainwindow.cpp:1262 ui/qtsystemtrayicon.cpp:166 #: ui/qtsystemtrayicon.cpp:192 wiimotedev/wiimotesettingspage.cpp:101 -#: ui_mainwindow.h:631 +#: ../bin/src/ui_mainwindow.h:631 msgid "Play" msgstr "" -#: ui_lastfmstationdialog.h:92 +#: ../bin/src/ui_lastfmstationdialog.h:92 msgid "Play Artist or Tag" msgstr "" @@ -2859,7 +2905,7 @@ msgstr "" msgid "Play artist radio..." msgstr "" -#: playlist/playlist.cpp:1113 ui_edittagdialog.h:637 +#: playlist/playlist.cpp:1113 ../bin/src/ui_edittagdialog.h:637 msgid "Play count" msgstr "" @@ -2871,7 +2917,8 @@ msgstr "" msgid "Play if stopped, pause if playing" msgstr "" -#: ui_behavioursettingspage.h:195 ui_behavioursettingspage.h:209 +#: ../bin/src/ui_behavioursettingspage.h:195 +#: ../bin/src/ui_behavioursettingspage.h:209 msgid "Play if there is nothing already playing" msgstr "" @@ -2887,11 +2934,11 @@ msgstr "" msgid "Play/Pause" msgstr "" -#: ui_playbacksettingspage.h:257 +#: ../bin/src/ui_playbacksettingspage.h:257 msgid "Playback" msgstr "" -#: ui_remotesettingspage.h:208 +#: ../bin/src/ui_remotesettingspage.h:208 msgid "Player name" msgstr "" @@ -2924,7 +2971,7 @@ msgstr "" msgid "Playlists" msgstr "" -#: ui_spotifysettingspage.h:185 +#: ../bin/src/ui_spotifysettingspage.h:185 msgid "Plugin status:" msgstr "" @@ -2944,66 +2991,68 @@ msgstr "" msgid "Popular songs today" msgstr "" -#: ui_notificationssettingspage.h:403 +#: ../bin/src/ui_notificationssettingspage.h:403 msgid "Popup duration" msgstr "" -#: ui_networkproxysettingspage.h:166 +#: ../bin/src/ui_networkproxysettingspage.h:166 msgid "Port" msgstr "" -#: ui/equalizer.cpp:46 ui_playbacksettingspage.h:274 +#: ui/equalizer.cpp:46 ../bin/src/ui_playbacksettingspage.h:274 msgid "Pre-amp" msgstr "" -#: ui_digitallyimportedsettingspage.h:166 ui_magnatunesettingspage.h:162 -#: ui_settingsdialog.h:115 ui_lastfmsettingspage.h:149 +#: ../bin/src/ui_digitallyimportedsettingspage.h:166 +#: ../bin/src/ui_magnatunesettingspage.h:162 +#: ../bin/src/ui_settingsdialog.h:115 ../bin/src/ui_lastfmsettingspage.h:149 msgid "Preferences" msgstr "" -#: ui_mainwindow.h:656 +#: ../bin/src/ui_mainwindow.h:656 msgid "Preferences..." msgstr "" -#: ui_librarysettingspage.h:164 +#: ../bin/src/ui_librarysettingspage.h:164 msgid "Preferred album art filenames (comma separated)" msgstr "" -#: ui_magnatunesettingspage.h:163 +#: ../bin/src/ui_magnatunesettingspage.h:163 msgid "Preferred audio format" msgstr "" -#: ui_deviceproperties.h:380 +#: ../bin/src/ui_deviceproperties.h:380 msgid "Preferred format" msgstr "" -#: ui_digitallyimportedsettingspage.h:174 +#: ../bin/src/ui_digitallyimportedsettingspage.h:174 msgid "Premium audio type" msgstr "" -#: ui_equalizer.h:119 +#: ../bin/src/ui_equalizer.h:119 msgid "Preset:" msgstr "" -#: ui_wiimoteshortcutgrabber.h:124 +#: ../bin/src/ui_wiimoteshortcutgrabber.h:124 msgid "Press a button combination to use for" msgstr "" -#: ui_globalshortcutgrabber.h:73 +#: ../bin/src/ui_globalshortcutgrabber.h:73 msgid "Press a key" msgstr "" -#: ui/globalshortcutgrabber.cpp:39 ui_globalshortcutgrabber.h:74 +#: ui/globalshortcutgrabber.cpp:39 ../bin/src/ui_globalshortcutgrabber.h:74 #, qt-format msgid "Press a key combination to use for %1..." msgstr "" -#: ui_notificationssettingspage.h:416 +#: ../bin/src/ui_notificationssettingspage.h:416 msgid "Pretty OSD options" msgstr "" -#: ui_searchpreview.h:105 ui_songinfosettingspage.h:183 -#: ui_notificationssettingspage.h:411 ui_organisedialog.h:208 +#: ../bin/src/ui_searchpreview.h:105 ../bin/src/ui_songinfosettingspage.h:183 +#: ../bin/src/ui_notificationssettingspage.h:411 +#: ../bin/src/ui_organisedialog.h:208 msgid "Preview" msgstr "" @@ -3012,7 +3061,7 @@ msgid "Previous" msgstr "" #: core/globalshortcuts.cpp:51 wiimotedev/wiimotesettingspage.cpp:100 -#: ui_mainwindow.h:629 +#: ../bin/src/ui_mainwindow.h:629 msgid "Previous track" msgstr "" @@ -3020,33 +3069,37 @@ msgstr "" msgid "Print out version information" msgstr "" -#: ui_transcoderoptionsaac.h:131 +#: ../bin/src/ui_transcoderoptionsaac.h:131 msgid "Profile" msgstr "" -#: ui_magnatunedownloaddialog.h:134 ui_transcodedialog.h:216 +#: ../bin/src/ui_magnatunedownloaddialog.h:134 +#: ../bin/src/ui_transcodedialog.h:216 msgid "Progress" msgstr "" -#: wiimotedev/wiimotesettingspage.cpp:227 ui_wiimoteshortcutgrabber.h:125 +#: wiimotedev/wiimotesettingspage.cpp:227 +#: ../bin/src/ui_wiimoteshortcutgrabber.h:125 msgid "Push Wiiremote button" msgstr "" -#: ui_querysortpage.h:138 +#: ../bin/src/ui_querysortpage.h:138 msgid "Put songs in a random order" msgstr "" -#: visualisations/visualisationcontainer.cpp:107 ui_transcoderoptionsflac.h:81 -#: ui_transcoderoptionsmp3.h:192 ui_transcoderoptionsspeex.h:217 -#: ui_transcoderoptionsvorbis.h:202 +#: visualisations/visualisationcontainer.cpp:107 +#: ../bin/src/ui_transcoderoptionsflac.h:81 +#: ../bin/src/ui_transcoderoptionsmp3.h:192 +#: ../bin/src/ui_transcoderoptionsspeex.h:217 +#: ../bin/src/ui_transcoderoptionsvorbis.h:202 msgid "Quality" msgstr "" -#: ui_deviceproperties.h:383 +#: ../bin/src/ui_deviceproperties.h:383 msgid "Querying device..." msgstr "" -#: ui_queuemanager.h:125 ui_mainwindow.h:690 +#: ../bin/src/ui_queuemanager.h:125 ../bin/src/ui_mainwindow.h:690 msgid "Queue Manager" msgstr "" @@ -3059,15 +3112,15 @@ msgstr "" msgid "Queue track" msgstr "" -#: ui_playbacksettingspage.h:271 +#: ../bin/src/ui_playbacksettingspage.h:271 msgid "Radio (equal loudness for all tracks)" msgstr "" -#: core/backgroundstreams.cpp:31 ui_mainwindow.h:669 +#: core/backgroundstreams.cpp:31 ../bin/src/ui_mainwindow.h:669 msgid "Rain" msgstr "" -#: ui_visualisationselector.h:112 +#: ../bin/src/ui_visualisationselector.h:112 msgid "Random visualization" msgstr "" @@ -3095,7 +3148,7 @@ msgstr "" msgid "Rate the current song 5 stars" msgstr "" -#: playlist/playlist.cpp:1112 ui_edittagdialog.h:645 +#: playlist/playlist.cpp:1112 ../bin/src/ui_edittagdialog.h:645 msgid "Rating" msgstr "" @@ -3127,28 +3180,29 @@ msgstr "" msgid "Reggae" msgstr "" -#: ui_wiimoteshortcutgrabber.h:126 +#: ../bin/src/ui_wiimoteshortcutgrabber.h:126 msgid "Remember Wii remote swing" msgstr "" -#: ui_behavioursettingspage.h:189 +#: ../bin/src/ui_behavioursettingspage.h:189 msgid "Remember from last time" msgstr "" -#: ui_remotesettingspage.h:199 +#: ../bin/src/ui_remotesettingspage.h:199 msgid "Remote Control" msgstr "" #: internet/savedradio.cpp:100 internet/lastfmservice.cpp:100 -#: ui_queuemanager.h:135 ui_searchtermwidget.h:282 ui_transcodedialog.h:207 +#: ../bin/src/ui_queuemanager.h:135 ../bin/src/ui_searchtermwidget.h:282 +#: ../bin/src/ui_transcodedialog.h:207 msgid "Remove" msgstr "" -#: ui_wiimotesettingspage.h:194 +#: ../bin/src/ui_wiimotesettingspage.h:194 msgid "Remove action" msgstr "" -#: ui_librarysettingspage.h:160 +#: ../bin/src/ui_librarysettingspage.h:160 msgid "Remove folder" msgstr "" @@ -3156,7 +3210,7 @@ msgstr "" msgid "Remove from favorites" msgstr "" -#: internet/groovesharkservice.cpp:495 ui_mainwindow.h:674 +#: internet/groovesharkservice.cpp:495 ../bin/src/ui_mainwindow.h:674 msgid "Remove from playlist" msgstr "" @@ -3176,23 +3230,23 @@ msgstr "" msgid "Rename playlist..." msgstr "" -#: ui_mainwindow.h:652 +#: ../bin/src/ui_mainwindow.h:652 msgid "Renumber tracks in this order..." msgstr "" -#: playlist/playlistsequence.cpp:171 ui_playlistsequence.h:107 +#: playlist/playlistsequence.cpp:174 ../bin/src/ui_playlistsequence.h:112 msgid "Repeat" msgstr "" -#: widgets/osd.cpp:308 ui_playlistsequence.h:101 +#: widgets/osd.cpp:309 ../bin/src/ui_playlistsequence.h:105 msgid "Repeat album" msgstr "" -#: widgets/osd.cpp:309 ui_playlistsequence.h:102 +#: widgets/osd.cpp:310 ../bin/src/ui_playlistsequence.h:106 msgid "Repeat playlist" msgstr "" -#: widgets/osd.cpp:307 ui_playlistsequence.h:100 +#: widgets/osd.cpp:308 ../bin/src/ui_playlistsequence.h:104 msgid "Repeat track" msgstr "" @@ -3206,23 +3260,23 @@ msgstr "" msgid "Replace current playlist" msgstr "" -#: ui_behavioursettingspage.h:202 +#: ../bin/src/ui_behavioursettingspage.h:202 msgid "Replace the playlist" msgstr "" -#: ui_organisedialog.h:205 +#: ../bin/src/ui_organisedialog.h:205 msgid "Replaces spaces with underscores" msgstr "" -#: ui_playbacksettingspage.h:266 +#: ../bin/src/ui_playbacksettingspage.h:266 msgid "Replay Gain" msgstr "" -#: ui_playbacksettingspage.h:268 +#: ../bin/src/ui_playbacksettingspage.h:268 msgid "Replay Gain mode" msgstr "" -#: ui_dynamicplaylistcontrols.h:112 +#: ../bin/src/ui_dynamicplaylistcontrols.h:112 msgid "Repopulate" msgstr "" @@ -3230,15 +3284,15 @@ msgstr "" msgid "Reset" msgstr "" -#: ui/edittagdialog.cpp:701 ui_edittagdialog.h:635 +#: ui/edittagdialog.cpp:701 ../bin/src/ui_edittagdialog.h:635 msgid "Reset play counts" msgstr "" -#: ui_organisedialog.h:206 +#: ../bin/src/ui_organisedialog.h:206 msgid "Restrict to ASCII characters" msgstr "" -#: ui_globalsearchsettingspage.h:175 +#: ../bin/src/ui_globalsearchsettingspage.h:175 msgid "Results" msgstr "" @@ -3254,7 +3308,7 @@ msgstr "" msgid "Rock" msgstr "" -#: ui_networkproxysettingspage.h:164 +#: ../bin/src/ui_networkproxysettingspage.h:164 msgid "SOCKS proxy" msgstr "" @@ -3262,11 +3316,11 @@ msgstr "" msgid "Safely remove device" msgstr "" -#: ui_organisedialog.h:196 +#: ../bin/src/ui_organisedialog.h:196 msgid "Safely remove the device after copying" msgstr "" -#: playlist/playlist.cpp:1120 ui_edittagdialog.h:642 +#: playlist/playlist.cpp:1120 ../bin/src/ui_edittagdialog.h:642 msgid "Sample rate" msgstr "" @@ -3290,15 +3344,15 @@ msgstr "" msgid "Save playlist" msgstr "" -#: playlist/playlisttabbar.cpp:50 ui_mainwindow.h:682 +#: playlist/playlisttabbar.cpp:50 ../bin/src/ui_mainwindow.h:682 msgid "Save playlist..." msgstr "" -#: ui/equalizer.cpp:172 ui_equalizer.h:121 +#: ui/equalizer.cpp:172 ../bin/src/ui_equalizer.h:121 msgid "Save preset" msgstr "" -#: ui_addstreamdialog.h:115 +#: ../bin/src/ui_addstreamdialog.h:115 msgid "Save this stream in the Internet tab" msgstr "" @@ -3306,19 +3360,20 @@ msgstr "" msgid "Saving tracks" msgstr "" -#: ui_transcoderoptionsaac.h:136 +#: ../bin/src/ui_transcoderoptionsaac.h:136 msgid "Scalable sampling rate profile (SSR)" msgstr "" -#: playlist/playlist.cpp:1116 ui_edittagdialog.h:643 +#: playlist/playlist.cpp:1116 ../bin/src/ui_edittagdialog.h:643 msgid "Score" msgstr "" -#: ui_lastfmsettingspage.h:150 +#: ../bin/src/ui_lastfmsettingspage.h:150 msgid "Scrobble tracks that I listen to" msgstr "" -#: ui_globalsearchsettingspage.h:166 ui_albumcoversearcher.h:113 +#: ../bin/src/ui_globalsearchsettingspage.h:166 +#: ../bin/src/ui_albumcoversearcher.h:113 msgid "Search" msgstr "" @@ -3331,7 +3386,7 @@ msgstr "" msgid "Search Grooveshark (opens a new tab)" msgstr "" -#: ui_icecastfilterwidget.h:78 +#: ../bin/src/ui_icecastfilterwidget.h:78 msgid "Search Icecast stations" msgstr "" @@ -3355,7 +3410,7 @@ msgstr "" msgid "Search Spotify (opens a new tab)..." msgstr "" -#: ui_globalsearchwidget.h:61 +#: ../bin/src/ui_globalsearchwidget.h:61 msgid "Search around all your sources (library, internet services, ...)" msgstr "" @@ -3363,11 +3418,11 @@ msgstr "" msgid "Search for album covers..." msgstr "" -#: ui_globalsearchwidget.h:63 +#: ../bin/src/ui_globalsearchwidget.h:63 msgid "Search for anything" msgstr "" -#: ui_querysearchpage.h:71 +#: ../bin/src/ui_querysearchpage.h:71 msgid "Search mode" msgstr "" @@ -3375,7 +3430,7 @@ msgstr "" msgid "Search options" msgstr "" -#: smartplaylists/querywizardplugin.cpp:144 ui_querysearchpage.h:78 +#: smartplaylists/querywizardplugin.cpp:144 ../bin/src/ui_querysearchpage.h:78 msgid "Search terms" msgstr "" @@ -3383,7 +3438,7 @@ msgstr "" msgid "Searching on Grooveshark" msgstr "" -#: ui_groupbydialog.h:138 +#: ../bin/src/ui_groupbydialog.h:138 msgid "Second level" msgstr "" @@ -3411,11 +3466,11 @@ msgstr "" msgid "Select None" msgstr "" -#: ui_trackselectiondialog.h:207 +#: ../bin/src/ui_trackselectiondialog.h:207 msgid "Select best possible match" msgstr "" -#: ui_visualisationselector.h:108 +#: ../bin/src/ui_visualisationselector.h:108 msgid "Select visualizations" msgstr "" @@ -3440,19 +3495,20 @@ msgstr "" msgid "Set the volume to percent" msgstr "" -#: ui_mainwindow.h:653 +#: ../bin/src/ui_mainwindow.h:653 msgid "Set value for all selected tracks..." msgstr "" -#: ui_remotesettingspage.h:207 +#: ../bin/src/ui_remotesettingspage.h:207 msgid "Settings" msgstr "" -#: ui_globalshortcutssettingspage.h:173 +#: ../bin/src/ui_globalshortcutssettingspage.h:173 msgid "Shortcut" msgstr "" -#: ui/globalshortcutssettingspage.cpp:133 ui_globalshortcutssettingspage.h:175 +#: ui/globalshortcutssettingspage.cpp:133 +#: ../bin/src/ui_globalshortcutssettingspage.h:175 #, qt-format msgid "Shortcut for %1" msgstr "" @@ -3474,31 +3530,31 @@ msgstr "" msgid "Show OSD" msgstr "" -#: ui_playbacksettingspage.h:258 +#: ../bin/src/ui_playbacksettingspage.h:258 msgid "Show a glowing animation on the current track" msgstr "" -#: ui_notificationssettingspage.h:399 +#: ../bin/src/ui_notificationssettingspage.h:399 msgid "Show a native desktop notification" msgstr "" -#: ui_notificationssettingspage.h:407 +#: ../bin/src/ui_notificationssettingspage.h:407 msgid "Show a notification when I change the repeat/shuffle mode" msgstr "" -#: ui_notificationssettingspage.h:406 +#: ../bin/src/ui_notificationssettingspage.h:406 msgid "Show a notification when I change the volume" msgstr "" -#: ui_notificationssettingspage.h:401 +#: ../bin/src/ui_notificationssettingspage.h:401 msgid "Show a popup from the system tray" msgstr "" -#: ui_notificationssettingspage.h:400 +#: ../bin/src/ui_notificationssettingspage.h:400 msgid "Show a pretty OSD" msgstr "" -#: ui_globalsearchsettingspage.h:176 +#: ../bin/src/ui_globalsearchsettingspage.h:176 msgid "Show a tooltip with more information about each result" msgstr "" @@ -3510,15 +3566,15 @@ msgstr "" msgid "Show all songs" msgstr "" -#: ui_querysortpage.h:141 +#: ../bin/src/ui_querysortpage.h:141 msgid "Show all the songs" msgstr "" -#: ui_librarysettingspage.h:171 +#: ../bin/src/ui_librarysettingspage.h:171 msgid "Show cover art in library" msgstr "" -#: ui_librarysettingspage.h:172 +#: ../bin/src/ui_librarysettingspage.h:172 msgid "Show dividers" msgstr "" @@ -3542,19 +3598,19 @@ msgstr "" msgid "Show only untagged" msgstr "" -#: ui_globalsearchsettingspage.h:167 +#: ../bin/src/ui_globalsearchsettingspage.h:167 msgid "Show the \"Search for anything\" box above the sidebar" msgstr "" -#: ui_lastfmsettingspage.h:151 +#: ../bin/src/ui_lastfmsettingspage.h:151 msgid "Show the \"love\" and \"ban\" buttons" msgstr "" -#: ui_lastfmsettingspage.h:152 +#: ../bin/src/ui_lastfmsettingspage.h:152 msgid "Show the scrobble button in the main window" msgstr "" -#: ui_behavioursettingspage.h:177 +#: ../bin/src/ui_behavioursettingspage.h:177 msgid "Show tray icon" msgstr "" @@ -3562,27 +3618,31 @@ msgstr "" msgid "Show/Hide" msgstr "" -#: playlist/playlistsequence.cpp:170 ui_playlistsequence.h:110 +#: playlist/playlistsequence.cpp:173 ../bin/src/ui_playlistsequence.h:115 msgid "Shuffle" msgstr "" -#: widgets/osd.cpp:295 ui_playlistsequence.h:105 +#: widgets/osd.cpp:297 ../bin/src/ui_playlistsequence.h:110 +msgid "Shuffle albums" +msgstr "" + +#: widgets/osd.cpp:295 ../bin/src/ui_playlistsequence.h:109 msgid "Shuffle all" msgstr "" -#: widgets/osd.cpp:296 ui_playlistsequence.h:104 -msgid "Shuffle by album" -msgstr "" - -#: ui_mainwindow.h:660 +#: ../bin/src/ui_mainwindow.h:660 msgid "Shuffle playlist" msgstr "" -#: ui_remotesettingspage.h:202 ui_loginstatewidget.h:173 +#: widgets/osd.cpp:296 ../bin/src/ui_playlistsequence.h:108 +msgid "Shuffle tracks in this album" +msgstr "" + +#: ../bin/src/ui_remotesettingspage.h:202 ../bin/src/ui_loginstatewidget.h:173 msgid "Sign out" msgstr "" -#: ui_loginstatewidget.h:175 +#: ../bin/src/ui_loginstatewidget.h:175 msgid "Signing in..." msgstr "" @@ -3598,7 +3658,7 @@ msgstr "" msgid "Skip backwards in playlist" msgstr "" -#: playlist/playlist.cpp:1114 ui_edittagdialog.h:639 +#: playlist/playlist.cpp:1114 ../bin/src/ui_edittagdialog.h:639 msgid "Skip count" msgstr "" @@ -3630,7 +3690,7 @@ msgstr "" msgid "Soft Rock" msgstr "" -#: ui_songinfosettingspage.h:179 +#: ../bin/src/ui_songinfosettingspage.h:179 msgid "Song Information" msgstr "" @@ -3642,39 +3702,39 @@ msgstr "" msgid "Sonogram" msgstr "" -#: ui_trackselectiondialog.h:205 +#: ../bin/src/ui_trackselectiondialog.h:205 msgid "Sorry" msgstr "" -#: ui_icecastfilterwidget.h:75 +#: ../bin/src/ui_icecastfilterwidget.h:75 msgid "Sort by genre (alphabetically)" msgstr "" -#: ui_icecastfilterwidget.h:76 +#: ../bin/src/ui_icecastfilterwidget.h:76 msgid "Sort by genre (by popularity)" msgstr "" -#: ui_icecastfilterwidget.h:77 +#: ../bin/src/ui_icecastfilterwidget.h:77 msgid "Sort by station name" msgstr "" -#: ui_querysortpage.h:139 +#: ../bin/src/ui_querysortpage.h:139 msgid "Sort songs by" msgstr "" -#: ui_querysortpage.h:137 +#: ../bin/src/ui_querysortpage.h:137 msgid "Sorting" msgstr "" -#: ui_globalsearchsettingspage.h:169 +#: ../bin/src/ui_globalsearchsettingspage.h:169 msgid "Sources" msgstr "" -#: ui_transcodersettingspage.h:162 +#: ../bin/src/ui_transcodersettingspage.h:162 msgid "Speex" msgstr "" -#: ui_spotifysettingspage.h:178 +#: ../bin/src/ui_spotifysettingspage.h:178 msgid "Spotify" msgstr "" @@ -3682,7 +3742,7 @@ msgstr "" msgid "Spotify login error" msgstr "" -#: ui_spotifysettingspage.h:183 +#: ../bin/src/ui_spotifysettingspage.h:183 msgid "Spotify plugin" msgstr "" @@ -3690,7 +3750,7 @@ msgstr "" msgid "Spotify plugin not installed" msgstr "" -#: ui_transcoderoptionsmp3.h:201 +#: ../bin/src/ui_transcoderoptionsmp3.h:201 msgid "Standard" msgstr "" @@ -3722,7 +3782,7 @@ msgid "Starting..." msgstr "" #: core/globalshortcuts.cpp:48 wiimotedev/wiimotesettingspage.cpp:102 -#: ui_mainwindow.h:633 +#: ../bin/src/ui_mainwindow.h:633 msgid "Stop" msgstr "" @@ -3730,7 +3790,7 @@ msgstr "" msgid "Stop after" msgstr "" -#: ui/mainwindow.cpp:508 ui_mainwindow.h:639 +#: ui/mainwindow.cpp:508 ../bin/src/ui_mainwindow.h:639 msgid "Stop after this track" msgstr "" @@ -3746,11 +3806,11 @@ msgstr "" msgid "Stopped" msgstr "" -#: core/song.cpp:144 +#: core/song.cpp:145 msgid "Stream" msgstr "" -#: ui_magnatunesettingspage.h:156 +#: ../bin/src/ui_magnatunesettingspage.h:156 msgid "Streaming membership" msgstr "" @@ -3767,7 +3827,8 @@ msgstr "" msgid "Suggested tags" msgstr "" -#: ui_edittagdialog.h:651 ui_notificationssettingspage.h:413 +#: ../bin/src/ui_edittagdialog.h:651 +#: ../bin/src/ui_notificationssettingspage.h:413 msgid "Summary" msgstr "" @@ -3780,7 +3841,7 @@ msgstr "" msgid "Super high (60 fps)" msgstr "" -#: ui_deviceproperties.h:374 +#: ../bin/src/ui_deviceproperties.h:374 msgid "Supported formats" msgstr "" @@ -3804,11 +3865,11 @@ msgstr "" msgid "Tabs on top" msgstr "" -#: ui_lastfmstationdialog.h:97 +#: ../bin/src/ui_lastfmstationdialog.h:97 msgid "Tag" msgstr "" -#: ui_trackselectiondialog.h:204 +#: ../bin/src/ui_trackselectiondialog.h:204 msgid "Tag fetcher" msgstr "" @@ -3816,7 +3877,7 @@ msgstr "" msgid "Tag radio" msgstr "" -#: ui_transcoderoptionsvorbis.h:204 +#: ../bin/src/ui_transcoderoptionsvorbis.h:204 msgid "Target bitrate" msgstr "" @@ -3824,7 +3885,7 @@ msgstr "" msgid "Techno" msgstr "" -#: ui_notificationssettingspage.h:425 +#: ../bin/src/ui_notificationssettingspage.h:425 msgid "Text options" msgstr "" @@ -3892,17 +3953,17 @@ msgid "" "continue?" msgstr "" -#: ui_librarysettingspage.h:158 +#: ../bin/src/ui_librarysettingspage.h:158 msgid "These folders will be scanned for music to make up your library" msgstr "" -#: ui_transcodersettingspage.h:158 +#: ../bin/src/ui_transcodersettingspage.h:158 msgid "" "These settings are used in the \"Transcode Music\" dialog, and when " "converting music before copying it to a device." msgstr "" -#: ui_groupbydialog.h:151 +#: ../bin/src/ui_groupbydialog.h:151 msgid "Third level" msgstr "" @@ -3916,13 +3977,13 @@ msgstr "" msgid "This album is not available in the requested format" msgstr "" -#: ui_deviceproperties.h:381 +#: ../bin/src/ui_deviceproperties.h:381 msgid "" "This device must be connected and opened before Clementine can see what file " "formats it supports." msgstr "" -#: ui_deviceproperties.h:375 +#: ../bin/src/ui_deviceproperties.h:375 msgid "This device supports the following file formats:" msgstr "" @@ -3960,7 +4021,7 @@ msgstr "" msgid "This type of device is not supported: %1" msgstr "" -#: ui_songinfosettingspage.h:185 +#: ../bin/src/ui_songinfosettingspage.h:185 msgid "Timeout" msgstr "" @@ -3969,8 +4030,8 @@ msgid "Timezone" msgstr "" #: playlist/playlist.cpp:1101 ui/organisedialog.cpp:51 -#: ui/qtsystemtrayicon.cpp:248 ui_about.h:142 ui_edittagdialog.h:652 -#: ui_trackselectiondialog.h:211 +#: ui/qtsystemtrayicon.cpp:248 ../bin/src/ui_about.h:142 +#: ../bin/src/ui_edittagdialog.h:652 ../bin/src/ui_trackselectiondialog.h:211 msgid "Title" msgstr "" @@ -3990,7 +4051,7 @@ msgstr "" msgid "Toggle queue status" msgstr "" -#: ui_mainwindow.h:697 +#: ../bin/src/ui_mainwindow.h:697 msgid "Toggle scrobbling" msgstr "" @@ -4006,20 +4067,20 @@ msgstr "" msgid "Total network requests made" msgstr "" -#: playlist/playlist.cpp:1105 ui/organisedialog.cpp:57 ui_edittagdialog.h:653 -#: ui_trackselectiondialog.h:212 +#: playlist/playlist.cpp:1105 ui/organisedialog.cpp:57 +#: ../bin/src/ui_edittagdialog.h:653 ../bin/src/ui_trackselectiondialog.h:212 msgid "Track" msgstr "" -#: ui_transcodedialog.h:201 ui_mainwindow.h:676 +#: ../bin/src/ui_transcodedialog.h:201 ../bin/src/ui_mainwindow.h:676 msgid "Transcode Music" msgstr "" -#: ui_transcodelogdialog.h:63 +#: ../bin/src/ui_transcodelogdialog.h:63 msgid "Transcoder Log" msgstr "" -#: ui_transcodersettingspage.h:157 +#: ../bin/src/ui_transcodersettingspage.h:157 msgid "Transcoding" msgstr "" @@ -4028,11 +4089,11 @@ msgstr "" msgid "Transcoding %1 files using %2 threads" msgstr "" -#: ui_transcoderoptionsdialog.h:54 +#: ../bin/src/ui_transcoderoptionsdialog.h:54 msgid "Transcoding options" msgstr "" -#: core/song.cpp:141 +#: core/song.cpp:142 msgid "TrueAudio" msgstr "" @@ -4040,7 +4101,7 @@ msgstr "" msgid "Turbine" msgstr "" -#: ui_dynamicplaylistcontrols.h:113 +#: ../bin/src/ui_dynamicplaylistcontrols.h:113 msgid "Turn off" msgstr "" @@ -4052,7 +4113,7 @@ msgstr "" msgid "URL(s)" msgstr "" -#: ui_transcoderoptionsspeex.h:228 +#: ../bin/src/ui_transcoderoptionsspeex.h:228 msgid "Ultra wide band (UWB)" msgstr "" @@ -4061,7 +4122,7 @@ msgstr "" msgid "Unable to download %1 (%2)" msgstr "" -#: core/song.cpp:148 globalsearch/globalsearchitemdelegate.cpp:166 +#: core/song.cpp:149 globalsearch/globalsearchitemdelegate.cpp:166 #: globalsearch/globalsearchitemdelegate.cpp:173 library/librarymodel.cpp:293 #: library/librarymodel.cpp:298 library/librarymodel.cpp:916 #: playlist/playlistdelegates.cpp:306 playlist/playlistmanager.cpp:381 @@ -4081,11 +4142,11 @@ msgstr "" msgid "Update Grooveshark playlist" msgstr "" -#: ui_mainwindow.h:688 +#: ../bin/src/ui_mainwindow.h:688 msgid "Update changed library folders" msgstr "" -#: ui_librarysettingspage.h:162 +#: ../bin/src/ui_librarysettingspage.h:162 msgid "Update the library when Clementine starts" msgstr "" @@ -4107,47 +4168,47 @@ msgstr "" msgid "Usage" msgstr "" -#: ui_globalshortcutssettingspage.h:168 +#: ../bin/src/ui_globalshortcutssettingspage.h:168 msgid "Use Gnome's shortcut keys" msgstr "" -#: ui_playbacksettingspage.h:267 +#: ../bin/src/ui_playbacksettingspage.h:267 msgid "Use Replay Gain metadata if it is available" msgstr "" -#: ui_wiimotesettingspage.h:189 +#: ../bin/src/ui_wiimotesettingspage.h:189 msgid "Use Wii Remote" msgstr "" -#: ui_notificationssettingspage.h:410 +#: ../bin/src/ui_notificationssettingspage.h:410 msgid "Use a custom message for notifications" msgstr "" -#: ui_networkproxysettingspage.h:167 +#: ../bin/src/ui_networkproxysettingspage.h:167 msgid "Use authentication" msgstr "" -#: ui_transcoderoptionsvorbis.h:203 +#: ../bin/src/ui_transcoderoptionsvorbis.h:203 msgid "Use bitrate management engine" msgstr "" -#: ui_wizardfinishpage.h:85 +#: ../bin/src/ui_wizardfinishpage.h:85 msgid "Use dynamic mode" msgstr "" -#: ui_wiimotesettingspage.h:188 +#: ../bin/src/ui_wiimotesettingspage.h:188 msgid "Use notifications to report Wii Remote status" msgstr "" -#: ui_transcoderoptionsaac.h:139 +#: ../bin/src/ui_transcoderoptionsaac.h:139 msgid "Use temporal noise shaping" msgstr "" -#: ui_behavioursettingspage.h:183 +#: ../bin/src/ui_behavioursettingspage.h:183 msgid "Use the system default" msgstr "" -#: ui_networkproxysettingspage.h:158 +#: ../bin/src/ui_networkproxysettingspage.h:158 msgid "Use the system proxy settings" msgstr "" @@ -4164,20 +4225,23 @@ msgstr "" msgid "User interface" msgstr "" -#: ui_groovesharksettingspage.h:114 ui_magnatunesettingspage.h:159 -#: ui_spotifysettingspage.h:180 ui_networkproxysettingspage.h:168 +#: ../bin/src/ui_groovesharksettingspage.h:114 +#: ../bin/src/ui_magnatunesettingspage.h:159 +#: ../bin/src/ui_spotifysettingspage.h:180 +#: ../bin/src/ui_networkproxysettingspage.h:168 msgid "Username" msgstr "" -#: ui_behavioursettingspage.h:191 +#: ../bin/src/ui_behavioursettingspage.h:191 msgid "Using the menu to add a song will..." msgstr "" -#: ui_magnatunedownloaddialog.h:142 ui_magnatunesettingspage.h:169 +#: ../bin/src/ui_magnatunedownloaddialog.h:142 +#: ../bin/src/ui_magnatunesettingspage.h:169 msgid "VBR MP3" msgstr "" -#: ui_transcoderoptionsspeex.h:232 +#: ../bin/src/ui_transcoderoptionsspeex.h:232 msgid "Variable bit rate" msgstr "" @@ -4191,23 +4255,23 @@ msgstr "" msgid "Version %1" msgstr "" -#: ui_albumcovermanager.h:154 +#: ../bin/src/ui_albumcovermanager.h:154 msgid "View" msgstr "" -#: ui_visualisationselector.h:109 +#: ../bin/src/ui_visualisationselector.h:109 msgid "Visualization mode" msgstr "" -#: ui/dbusscreensaver.cpp:35 ui_mainwindow.h:689 +#: ui/dbusscreensaver.cpp:35 ../bin/src/ui_mainwindow.h:689 msgid "Visualizations" msgstr "" -#: ui_visualisationoverlay.h:181 +#: ../bin/src/ui_visualisationoverlay.h:181 msgid "Visualizations Settings" msgstr "" -#: ui_transcoderoptionsspeex.h:233 +#: ../bin/src/ui_transcoderoptionsspeex.h:233 msgid "Voice activity detection" msgstr "" @@ -4220,19 +4284,20 @@ msgstr "" msgid "Volume name" msgstr "" -#: ui_transcodersettingspage.h:160 +#: ../bin/src/ui_transcodersettingspage.h:160 msgid "Vorbis" msgstr "" -#: ui_magnatunedownloaddialog.h:141 ui_magnatunesettingspage.h:168 +#: ../bin/src/ui_magnatunedownloaddialog.h:141 +#: ../bin/src/ui_magnatunesettingspage.h:168 msgid "WAV" msgstr "" -#: ui_transcodersettingspage.h:164 +#: ../bin/src/ui_transcodersettingspage.h:164 msgid "WMA" msgstr "" -#: core/song.cpp:140 +#: core/song.cpp:141 msgid "Wav" msgstr "" @@ -4240,11 +4305,11 @@ msgstr "" msgid "Weeks" msgstr "" -#: ui_behavioursettingspage.h:186 +#: ../bin/src/ui_behavioursettingspage.h:186 msgid "When Clementine starts" msgstr "" -#: ui_librarysettingspage.h:166 +#: ../bin/src/ui_librarysettingspage.h:166 msgid "" "When looking for album art Clementine will first look for picture files that " "contain one of these words.\n" @@ -4255,7 +4320,7 @@ msgstr "" msgid "WiFi MAC Address" msgstr "" -#: ui_transcoderoptionsspeex.h:229 +#: ../bin/src/ui_transcoderoptionsspeex.h:229 msgid "Wide band (WB)" msgstr "" @@ -4289,23 +4354,23 @@ msgstr "" msgid "Wii Remote %1: low battery (%2%)" msgstr "" -#: ui_wiimotesettingspage.h:182 +#: ../bin/src/ui_wiimotesettingspage.h:182 msgid "Wiimotedev" msgstr "" -#: ui_digitallyimportedsettingspage.h:181 +#: ../bin/src/ui_digitallyimportedsettingspage.h:181 msgid "Windows Media 128k" msgstr "" -#: ui_digitallyimportedsettingspage.h:172 +#: ../bin/src/ui_digitallyimportedsettingspage.h:172 msgid "Windows Media 40k" msgstr "" -#: ui_digitallyimportedsettingspage.h:180 +#: ../bin/src/ui_digitallyimportedsettingspage.h:180 msgid "Windows Media 64k" msgstr "" -#: core/song.cpp:131 +#: core/song.cpp:132 msgid "Windows Media audio" msgstr "" @@ -4313,12 +4378,14 @@ msgstr "" msgid "Would you like to run a full rescan right now?" msgstr "" -#: playlist/playlist.cpp:1107 ui/organisedialog.cpp:60 ui_groupbydialog.h:135 -#: ui_groupbydialog.h:148 ui_groupbydialog.h:161 ui_edittagdialog.h:657 +#: playlist/playlist.cpp:1107 ui/organisedialog.cpp:60 +#: ../bin/src/ui_groupbydialog.h:135 ../bin/src/ui_groupbydialog.h:148 +#: ../bin/src/ui_groupbydialog.h:161 ../bin/src/ui_edittagdialog.h:657 msgid "Year" msgstr "" -#: ui_groupbydialog.h:136 ui_groupbydialog.h:149 ui_groupbydialog.h:162 +#: ../bin/src/ui_groupbydialog.h:136 ../bin/src/ui_groupbydialog.h:149 +#: ../bin/src/ui_groupbydialog.h:162 msgid "Year - Album" msgstr "" @@ -4330,11 +4397,11 @@ msgstr "" msgid "Yesterday" msgstr "" -#: ui_magnatunedownloaddialog.h:132 +#: ../bin/src/ui_magnatunedownloaddialog.h:132 msgid "You are about to download the following albums" msgstr "" -#: ui_loginstatewidget.h:172 +#: ../bin/src/ui_loginstatewidget.h:172 msgid "You are not signed in." msgstr "" @@ -4347,7 +4414,7 @@ msgstr "" msgid "You are signed in." msgstr "" -#: ui_groupbydialog.h:123 +#: ../bin/src/ui_groupbydialog.h:123 msgid "You can change the way the songs in the library are organised." msgstr "" @@ -4363,7 +4430,7 @@ msgid "" "membership removes the messages at the end of each track." msgstr "" -#: ui_backgroundstreamssettingspage.h:57 +#: ../bin/src/ui_backgroundstreamssettingspage.h:57 msgid "You can listen to background streams at the same time as other music." msgstr "" @@ -4373,7 +4440,7 @@ msgid "" "\">paid subscribers can stream Last.fm radio from Clementine." msgstr "" -#: ui_wiimotesettingspage.h:184 +#: ../bin/src/ui_wiimotesettingspage.h:184 msgid "" "You can use your Wii Remote as a remote control for Clementine. See the page on the Clementine " @@ -4392,14 +4459,14 @@ msgstr "" msgid "You love this track" msgstr "" -#: ui_globalshortcutssettingspage.h:170 +#: ../bin/src/ui_globalshortcutssettingspage.h:170 msgid "" "You need to launch System Preferences and turn on \"Enable access for assistive devices\" to use global " "shortcuts in Clementine." msgstr "" -#: ui_behavioursettingspage.h:185 +#: ../bin/src/ui_behavioursettingspage.h:185 msgid "You will need to restart Clementine if you change the language." msgstr "" @@ -4460,7 +4527,7 @@ msgid "Zero" msgstr "" #: playlist/playlistundocommands.cpp:37 -#, c-format +#, c-format, qt-plural-format msgid "add %n songs" msgstr "" @@ -4468,15 +4535,15 @@ msgstr "" msgid "after" msgstr "" -#: ui_searchtermwidget.h:281 +#: ../bin/src/ui_searchtermwidget.h:281 msgid "ago" msgstr "" -#: ui_searchtermwidget.h:280 +#: ../bin/src/ui_searchtermwidget.h:280 msgid "and" msgstr "" -#: ui_transcoderoptionsspeex.h:219 +#: ../bin/src/ui_transcoderoptionsspeex.h:219 msgid "automatic" msgstr "" @@ -4500,8 +4567,9 @@ msgstr "" msgid "contains" msgstr "" -#: ui_transcoderoptionsspeex.h:222 ui_transcoderoptionsvorbis.h:207 -#: ui_transcoderoptionsvorbis.h:210 +#: ../bin/src/ui_transcoderoptionsspeex.h:222 +#: ../bin/src/ui_transcoderoptionsvorbis.h:207 +#: ../bin/src/ui_transcoderoptionsvorbis.h:210 msgid "disabled" msgstr "" @@ -4583,7 +4651,7 @@ msgid "press enter" msgstr "" #: playlist/playlistundocommands.cpp:65 playlist/playlistundocommands.cpp:88 -#, c-format +#, c-format, qt-plural-format msgid "remove %n songs" msgstr "" diff --git a/src/widgets/osd.cpp b/src/widgets/osd.cpp index 41f581c99..aeec24534 100644 --- a/src/widgets/osd.cpp +++ b/src/widgets/osd.cpp @@ -291,9 +291,10 @@ void OSD::ShuffleModeChanged(PlaylistSequence::ShuffleMode mode) { if (show_on_play_mode_change_) { QString current_mode = QString(); switch (mode) { - case PlaylistSequence::Shuffle_Off: current_mode = tr("Don't shuffle"); break; - case PlaylistSequence::Shuffle_All: current_mode = tr("Shuffle all"); break; - case PlaylistSequence::Shuffle_Album: current_mode = tr("Shuffle by album"); break; + case PlaylistSequence::Shuffle_Off: current_mode = tr("Don't shuffle"); break; + case PlaylistSequence::Shuffle_All: current_mode = tr("Shuffle all"); break; + case PlaylistSequence::Shuffle_InsideAlbum: current_mode = tr("Shuffle tracks in this album"); break; + case PlaylistSequence::Shuffle_Albums: current_mode = tr("Shuffle albums"); break; } ShowMessage(QCoreApplication::applicationName(), current_mode); }