Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2014-10-22 20:26:40 +0400
committerOlivier Goffart <ogoffart@woboq.com>2014-10-22 20:26:40 +0400
commitde56b753d19a6e04830a27e91275b64f5bbe7ceb (patch)
treef0c9457677526fc98b1fc834713897da0e6ca71b /src/mirall
parentdab01e3f3fd018c6027857651b829d679342006b (diff)
protocolwidget: fix string that need to use plural translation
Diffstat (limited to 'src/mirall')
-rw-r--r--src/mirall/protocolwidget.cpp2
1 files changed, 1 insertions, 1 deletions
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);