mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-11-23 16:55:39 +01:00
Merge pull request #57 from nkatz565/fix-tr
Fix non translated string (same as Citra PR 2949)
This commit is contained in:
commit
f2b4b668e3
@ -72,5 +72,6 @@ void ConfigureSystem::refreshConsoleID() {
|
|||||||
if (reply == QMessageBox::No)
|
if (reply == QMessageBox::No)
|
||||||
return;
|
return;
|
||||||
u64 console_id{};
|
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()));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user