1
0
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:
Arnaud Bienner 2011-11-05 01:17:25 +01:00
parent a2327c4eb7
commit 33abc40bf5
2 changed files with 2 additions and 2 deletions

View File

@ -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 {

View File

@ -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 {