From feedb1450ce3f15757dd9f7f471933245bff3d5f Mon Sep 17 00:00:00 2001 From: Jason Herskowitz Date: Mon, 9 Apr 2012 14:46:36 -0400 Subject: [PATCH] Make capitalization of Stop Playback after this Track consistent with other context menu items --- src/libtomahawk/contextmenu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libtomahawk/contextmenu.cpp b/src/libtomahawk/contextmenu.cpp index fcba90360..baafe07f5 100644 --- a/src/libtomahawk/contextmenu.cpp +++ b/src/libtomahawk/contextmenu.cpp @@ -84,9 +84,9 @@ ContextMenu::setQueries( const QList& queries ) if ( m_supportedActions & ActionStopAfter && itemCount() == 1 ) { if ( AudioEngine::instance()->stopAfterTrack() == queries.first() ) - m_sigmap->setMapping( addAction( tr( "&Continue playback after this track" ) ), ActionStopAfter ); + m_sigmap->setMapping( addAction( tr( "&Continue Playback after this Track" ) ), ActionStopAfter ); else - m_sigmap->setMapping( addAction( tr( "&Stop playback after this track" ) ), ActionStopAfter ); + m_sigmap->setMapping( addAction( tr( "&Stop Playback after this Track" ) ), ActionStopAfter ); } addSeparator();