From de56b753d19a6e04830a27e91275b64f5bbe7ceb Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Wed, 22 Oct 2014 18:26:40 +0200 Subject: [PATCH] protocolwidget: fix string that need to use plural translation --- src/mirall/protocolwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mirall/protocolwidget.cpp b/src/mirall/protocolwidget.cpp index 28c8426f0..0e0573188 100644 --- a/src/mirall/protocolwidget.cpp +++ b/src/mirall/protocolwidget.cpp @@ -254,7 +254,7 @@ void ProtocolWidget::computeResyncButtonEnabled() QString t = tr("Currently no files are ignored because of previous errors."); if(cnt > 0) { - t = tr("%1 files are ignored because of previous errors.\n Try to sync these again.").arg(cnt); + t = tr("%n files are ignored because of previous errors.\n Try to sync these again.", 0, cnt); } _clearBlacklistBtn->setEnabled(cnt > 0);