Browse Source
Merge pull request #57 from nkatz565/fix-tr
Fix non translated string (same as Citra PR 2949)
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/yuzu/configuration/configure_system.cpp
|
|
|
@ -72,5 +72,6 @@ void ConfigureSystem::refreshConsoleID() { |
|
|
|
if (reply == QMessageBox::No) |
|
|
|
return; |
|
|
|
u64 console_id{}; |
|
|
|
ui->label_console_id->setText("Console ID: 0x" + QString::number(console_id, 16).toUpper()); |
|
|
|
ui->label_console_id->setText( |
|
|
|
tr("Console ID: 0x%1").arg(QString::number(console_id, 16).toUpper())); |
|
|
|
} |