1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-02-23 03:15:39 +01:00

Replace <br /> with \n in Notifictation messages

* <br /> is not supported by all WMs
* \n has broader support or will be sliently (i.e. without printing a
  character) ignored
This commit is contained in:
Uwe L. Korn 2013-03-28 15:15:41 +01:00
parent 4861b63849
commit c10f2fef86

View File

@ -190,9 +190,9 @@ FdoNotifyPlugin::nowPlaying( const QVariant& input )
// Remark: If using xml-based markup in notifications, the supplied strings need to be escaped.
QString album;
if ( !hash[ "album" ].isEmpty() )
album = tr( "<br /><i>on</i> %1", "%1 is an album name" ).arg( Qt::escape( hash[ "album" ] ) );
album = tr( "\n<i>on</i> %1", "%1 is an album name" ).arg( Qt::escape( hash[ "album" ] ) );
messageText = tr( "%1<br /><i>by</i> %2%3.", "%1 is a title, %2 is an artist and %3 is replaced by either the previous message or nothing" )
messageText = tr( "%1\n<i>by</i> %2%3.", "%1 is a title, %2 is an artist and %3 is replaced by either the previous message or nothing" )
.arg( Qt::escape( hash[ "title" ] ) )
.arg( Qt::escape( hash[ "artist" ] ) )
.arg( album );