From 494f4a77423d2ed88aaa14a0e791e9fef60d8216 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Tue, 3 May 2016 14:42:35 +0200 Subject: [PATCH] Git: Use numerous form Change-Id: I5a5f8cc4f607f0dd80772eb97128bdefa753c201 Reviewed-by: Friedemann Kleint Reviewed-by: Tobias Hunger Reviewed-by: Leena Miettinen --- src/plugins/git/branchdialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/git/branchdialog.cpp b/src/plugins/git/branchdialog.cpp index b790ba4cc55..3ba9feb0f44 100644 --- a/src/plugins/git/branchdialog.cpp +++ b/src/plugins/git/branchdialog.cpp @@ -63,8 +63,8 @@ BranchDialog::BranchDialog(QWidget *parent) : m_ui->setupUi(this); m_ui->includeOldCheckBox->setToolTip( - tr("Include branches and tags that have not been active for %1 days.") - .arg(Constants::OBSOLETE_COMMIT_AGE_IN_DAYS)); + tr("Include branches and tags that have not been active for %n days.", 0, + Constants::OBSOLETE_COMMIT_AGE_IN_DAYS)); connect(m_ui->refreshButton, &QAbstractButton::clicked, this, &BranchDialog::refreshCurrentRepository); connect(m_ui->addButton, &QAbstractButton::clicked, this, &BranchDialog::add);