mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
protocolwidget: fix string that need to use plural translation
This commit is contained in:
parent
dab01e3f3f
commit
de56b753d1
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue