1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-21 00:09:47 +01:00

* Added comment to tr().

This commit is contained in:
Christian Muehlhaeuser 2012-06-01 02:01:53 +02:00
parent 8841fa48bf
commit c3570e8e53

View File

@ -358,7 +358,8 @@ SourceTreeView::deletePlaylist( const QModelIndex& idxIn )
}
QMessageBox askDelete( QMessageBox::Question, tr( "Delete %1?", "playlist/station/..." ).arg( typeDesc ),
tr( "Would you like to delete the %1 <b>\"%2\"</b>?" ).arg( typeDesc ).arg( idx.data().toString() ),
tr( "Would you like to delete the %1 <b>\"%2\"</b>?", "e.g. Would you like to delete the playlist named Foobar?" )
.arg( typeDesc ).arg( idx.data().toString() ),
QMessageBox::Yes | QMessageBox::No, this );
int r = askDelete.exec();