mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-06 14:16:32 +02:00
Make more FdoNotifyPlugin texts translatable.
This commit is contained in:
@@ -125,7 +125,7 @@ FdoNotifyPlugin::pushInfo( Tomahawk::InfoSystem::InfoPushData pushData )
|
|||||||
switch ( pushData.type )
|
switch ( pushData.type )
|
||||||
{
|
{
|
||||||
case Tomahawk::InfoSystem::InfoTrackUnresolved:
|
case Tomahawk::InfoSystem::InfoTrackUnresolved:
|
||||||
notifyUser( "The current track could not be resolved. Tomahawk will pick back up with the next resolvable track from this source." );
|
notifyUser( tr( "The current track could not be resolved. Tomahawk will pick back up with the next resolvable track from this source." ) );
|
||||||
return;
|
return;
|
||||||
|
|
||||||
case Tomahawk::InfoSystem::InfoNotifyUser:
|
case Tomahawk::InfoSystem::InfoNotifyUser:
|
||||||
@@ -133,7 +133,7 @@ FdoNotifyPlugin::pushInfo( Tomahawk::InfoSystem::InfoPushData pushData )
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
case Tomahawk::InfoSystem::InfoNowStopped:
|
case Tomahawk::InfoSystem::InfoNowStopped:
|
||||||
notifyUser( "Tomahawk is stopped." );
|
notifyUser( tr( "Tomahawk is stopped." ) );
|
||||||
return;
|
return;
|
||||||
|
|
||||||
case Tomahawk::InfoSystem::InfoNowPlaying:
|
case Tomahawk::InfoSystem::InfoNowPlaying:
|
||||||
@@ -318,7 +318,6 @@ FdoNotifyPlugin::nowPlaying( const QVariant& input )
|
|||||||
|
|
||||||
QDBusPendingCallWatcher* watcher = new QDBusPendingCallWatcher( reply, this );
|
QDBusPendingCallWatcher* watcher = new QDBusPendingCallWatcher( reply, this );
|
||||||
connect( watcher, SIGNAL( finished( QDBusPendingCallWatcher* ) ), SLOT( dbusPlayingReplyReceived( QDBusPendingCallWatcher* ) ) );
|
connect( watcher, SIGNAL( finished( QDBusPendingCallWatcher* ) ), SLOT( dbusPlayingReplyReceived( QDBusPendingCallWatcher* ) ) );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user