mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-16 19:31:02 +01:00
Use the same string for special search playlists, to be consistent (just one same string to translate)
This commit is contained in:
parent
a2327c4eb7
commit
33abc40bf5
@ -33,7 +33,7 @@ QString GroovesharkSearchPlaylistType::search_hint_text(Playlist* playlist) cons
|
||||
}
|
||||
|
||||
QString GroovesharkSearchPlaylistType::empty_playlist_text(Playlist* playlist) const {
|
||||
return QObject::tr("Start typing in the search box above to find music on Grooveshark.");
|
||||
return QObject::tr("Start typing in the search box above to find music on %1.").arg("Grooveshark");
|
||||
}
|
||||
|
||||
bool GroovesharkSearchPlaylistType::has_special_search_behaviour(Playlist* playlist) const {
|
||||
|
@ -33,7 +33,7 @@ QString SpotifySearchPlaylistType::search_hint_text(Playlist* playlist) const {
|
||||
}
|
||||
|
||||
QString SpotifySearchPlaylistType::empty_playlist_text(Playlist* playlist) const {
|
||||
return QObject::tr("Start typing in the search box above to find music on Spotify.");
|
||||
return QObject::tr("Start typing in the search box above to find music on %1.").arg("Spotify");
|
||||
}
|
||||
|
||||
bool SpotifySearchPlaylistType::has_special_search_behaviour(Playlist* playlist) const {
|
||||
|
Loading…
Reference in New Issue
Block a user