mi scusi, missing translation

This commit is contained in:
Paweł Bara 2011-03-22 14:53:48 +00:00
parent f021d63f41
commit f6c8c74302
1 changed files with 2 additions and 4 deletions

View File

@ -1848,13 +1848,11 @@ void MainWindow::CheckFullRescanRevisions() {
// if we have any...
if(!reasons.isEmpty()) {
QString message = tr("The version of Clementine you've just updated to requires a full library rescan "
"because of the new features listed below:"
"<ul>");
"because of the new features listed below:") + "<ul>";
foreach(const QString& reason, reasons) {
message += ("<li>" + reason + "</li>");
}
message += "</ul>"
"Would you like to run a full rescan right now?";
message += "</ul>" + tr("Would you like to run a full rescan right now?");
if(QMessageBox::question(this, tr("Library rescan notice"),
message, QMessageBox::Yes, QMessageBox::No) == QMessageBox::Yes) {