Merge pull request #5812 from ligfx/gettexttizeqt

gettextize: extract arguments to Qt's `tr`
This commit is contained in:
Leo Lam
2017-07-23 14:35:44 +08:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@ -54,8 +54,8 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent)
text_label->setOpenExternalLinks(true);
QLabel* copyright =
new QLabel(tr("© 2003-%1 Dolphin Team. “GameCube” and “Wii” are"
" trademarks of Nintendo. Dolphin is not affiliated with Nintendo in any way.")
new QLabel(tr("\u00A9 2003-%1 Dolphin Team. \u201cGameCubeu201d and \u201cWiiu201d are "
"trademarks of Nintendo. Dolphin is not affiliated with Nintendo in any way.")
.arg(QStringLiteral(__DATE__).right(4)));
QLabel* logo = new QLabel();