From b568759c8f40ad76abec9dc7eabcdf7bfcb36ea3 Mon Sep 17 00:00:00 2001 From: "craig.p.drummond" Date: Fri, 1 Jun 2012 16:26:27 +0000 Subject: [PATCH] Fix error text --- gui/tageditor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/tageditor.cpp b/gui/tageditor.cpp index 1cd01828f..d92ddad9d 100644 --- a/gui/tageditor.cpp +++ b/gui/tageditor.cpp @@ -659,8 +659,8 @@ void TagEditor::applyUpdates() KMessageBox::errorList(this, i18n("Failed to update the tags of the following tracks:"), failed); #else QMessageBox::warning(this, tr("Warning"), 1==failed.count() - ? tr("Failed to update the tags of the %1").arg(failed.at(0)) - : tr("Failed to update the tags of the %2 tracks").arg(failed.count())); + ? tr("Failed to update the tags of %1").arg(failed.at(0)) + : tr("Failed to update the tags of %2 tracks").arg(failed.count())); #endif }