From 7da142a4c7d04e6b31cc6bb29f1a57a938f87deb Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Fri, 4 Sep 2009 14:47:09 +0200 Subject: [PATCH] display "artist info" instead of "artist's info" --- src/help.cpp | 4 ++-- src/info.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/help.cpp b/src/help.cpp index f1ccff24..2f21287e 100644 --- a/src/help.cpp +++ b/src/help.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"; diff --git a/src/info.cpp b/src/info.cpp index aafa723e..2c18630b 100644 --- a/src/info.cpp +++ b/src/info.cpp @@ -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(*w) << "Fetching artist's info..."; + static_cast(*w) << "Fetching artist info..."; w->Window::Refresh(); # ifdef HAVE_PTHREAD_H if (!Downloader)