diff --git a/src/widget/form/settings/aboutform.cpp b/src/widget/form/settings/aboutform.cpp index 9344ecf9b..ed9125842 100644 --- a/src/widget/form/settings/aboutform.cpp +++ b/src/widget/form/settings/aboutform.cpp @@ -57,35 +57,51 @@ void AboutForm::replaceVersions() bodyUI->toxCoreVersion->setText(bodyUI->toxCoreVersion->text().replace("$TOXCOREVERSION", TOXCORE_VERSION)); bodyUI->qtVersion->setText(bodyUI->qtVersion->text().replace("$QTVERSION", QT_VERSION_STR)); bodyUI->knownIssues->setText( - tr("A list of all known issues may be found at our %1 at Github. If you discover a bug or security vulnerability within qTox, please %3 according to the guidelines in our %2 wiki article.") - .arg(QString::fromUtf8("%1") - .arg(tr("bug-tracker"))) - .arg(QString::fromUtf8("%1") - .arg(tr("Writing Useful Bug Reports"))) - .arg(QString::fromUtf8("%8") - .arg( - QString("%0"), - QString("%2"), - QString("%3"), - QString(GIT_DESCRIBE), - QString(GIT_VERSION), - QString(TOXCORE_VERSION), - QString(QT_VERSION_STR), - tr("report it"))) - ); + tr("A list of all known issues may be found at our %1 at Github." + " If you discover a bug or security vulnerability within" + " qTox, please %3 according to the guidelines in our %2" + " wiki article.") + .arg(QString::fromUtf8("%1") + .arg(tr("bug-tracker"))) + .arg(QString::fromUtf8("%1") + .arg(tr("Writing Useful Bug Reports"))) + .arg(QStringLiteral( + "") + tr("report it") + + QStringLiteral("") + ) + ); } AboutForm::~AboutForm()