diff --git a/src/libtomahawk/contextmenu.cpp b/src/libtomahawk/contextmenu.cpp index da2812827..558b9cb29 100644 --- a/src/libtomahawk/contextmenu.cpp +++ b/src/libtomahawk/contextmenu.cpp @@ -127,7 +127,7 @@ ContextMenu::setAlbums( const QList& albums ) m_albums << albums; if ( m_supportedActions & ActionPlay && itemCount() == 1 ) - m_sigmap->setMapping( addAction( tr( "&Play" ) ), ActionPlay ); + m_sigmap->setMapping( addAction( tr( "Show &Album page" ) ), ActionPlay ); if ( m_supportedActions & ActionQueue ) m_sigmap->setMapping( addAction( tr( "Add to &Queue" ) ), ActionQueue ); @@ -166,7 +166,7 @@ ContextMenu::setArtists( const QList& artists ) m_artists << artists; if ( m_supportedActions & ActionPlay && itemCount() == 1 ) - m_sigmap->setMapping( addAction( tr( "&Play" ) ), ActionPlay ); + m_sigmap->setMapping( addAction( tr( "Show &Artist page" ) ), ActionPlay ); if ( m_supportedActions & ActionQueue ) m_sigmap->setMapping( addAction( tr( "Add to &Queue" ) ), ActionQueue );