refactor: tweak qt client about dialog text (#2304)

* refactor: tweak qt client about dialog text
This commit is contained in:
Charles Kerr 2021-12-12 15:32:06 -06:00 committed by GitHub
parent 2dbfec8502
commit 2b3fbd93f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -37,9 +37,9 @@ AboutDialog::AboutDialog(Session& session, QWidget* parent)
QString title = QStringLiteral(
"<div style='font-size:x-large; font-weight: bold; text-align: center'>Transmission</div>");
title += QStringLiteral("<div style='text-align: center'>%1: %2</div>")
.arg(tr("This GUI"))
.arg(tr("Client"))
.arg(QStringLiteral(LONG_VERSION_STRING));
title += QStringLiteral("<div style='text-align: center'>%1: %2</div>").arg(tr("Remote")).arg(session.sessionVersion());
title += QStringLiteral("<div style='text-align: center'>%1: %2</div>").arg(tr("Server")).arg(session.sessionVersion());
ui_.titleLabel->setText(title);
}