1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-20 07:52:30 +02:00

* Switch to 'You' and 'Your Collection' instead of 'My Collection' everywhere.

This commit is contained in:
Christian Muehlhaeuser 2014-09-05 07:12:18 +02:00
parent c2be5c8bfb
commit 79ae3d9211
3 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ LocalCollection::LocalCollection( const Tomahawk::source_ptr& source, QObject* p
QString
LocalCollection::prettyName() const
{
return tr( "My Collection" );
return tr( "Your Collection" );
}

View File

@ -894,7 +894,7 @@ Tomahawk::EchonestControl::calculateSummary()
else
{
QString subSum;
if ( b->currentText() == tr( "My Collection" ) )
if ( b->currentText() == tr( "You" ) )
summary = tr( "from my radio" );
else
summary = tr( "from %1 radio" ).arg( b->currentText() );

View File

@ -506,7 +506,7 @@ TomahawkApp::initLocalCollection()
connect( SourceList::instance(), SIGNAL( ready() ), SLOT( initServent() ) );
source_ptr src( new Source( 0, Database::instance()->impl()->dbid() ) );
src->setFriendlyName( tr( "My Collection" ) );
src->setFriendlyName( tr( "You" ) );
collection_ptr coll( new LocalCollection( src ) );
src->addCollection( coll );