diff options
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/git/branchdialog.cpp | 4 |
1 files 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); |