display "artist info" instead of "artist's info"

master
Andrzej Rybczak 17 years ago
parent d7108caf45
commit 7da142a4c7
  1. 4
      src/help.cpp
  2. 4
      src/info.cpp

@ -191,9 +191,9 @@ void Help::GetKeybindings()
*w << DisplayKeys(Key.ToggleDisplayMode) << "Toggle display mode\n";
*w << DisplayKeys(Key.ToggleInterface) << "Toggle user interface\n";
*w << DisplayKeys(Key.GoToPosition) << "Go to given position in current song (in % by default)\n";
*w << DisplayKeys(Key.SongInfo) << "Show song's info\n";
*w << DisplayKeys(Key.SongInfo) << "Show song info\n";
# ifdef HAVE_CURL_CURL_H
*w << DisplayKeys(Key.ArtistInfo) << "Show artist's info\n";
*w << DisplayKeys(Key.ArtistInfo) << "Show artist info\n";
*w << DisplayKeys(Key.ToggleLyricsDB) << "Toggle lyrics database\n";
# endif // HAVE_CURL_CURL_H
*w << DisplayKeys(Key.Lyrics) << "Show/hide song's lyrics\n";

@ -156,9 +156,9 @@ void Info::GetArtist()
myOldScreen = myScreen;
myScreen = this;
RedrawHeader = 1;
itsTitle = "Artist's info - " + itsArtist;
itsTitle = "Artist info - " + itsArtist;
w->Clear();
static_cast<Window &>(*w) << "Fetching artist's info...";
static_cast<Window &>(*w) << "Fetching artist info...";
w->Window::Refresh();
# ifdef HAVE_PTHREAD_H
if (!Downloader)

Loading…
Cancel
Save