diff options
| author | 2018-01-17 13:46:39 -0500 | |
|---|---|---|
| committer | 2018-01-17 13:46:39 -0500 | |
| commit | f2b4b668e3d98fe09fa215486060b0549831f86d (patch) | |
| tree | bee430edb52f9528f1adc62261e6e899fc295f27 | |
| parent | Merge pull request #64 from shinyquagsire23/hid-timing (diff) | |
| parent | Fixed formatting (diff) | |
| download | yuzu-f2b4b668e3d98fe09fa215486060b0549831f86d.tar.gz yuzu-f2b4b668e3d98fe09fa215486060b0549831f86d.tar.xz yuzu-f2b4b668e3d98fe09fa215486060b0549831f86d.zip | |
Merge pull request #57 from nkatz565/fix-tr
Fix non translated string (same as Citra PR 2949)
| -rw-r--r-- | src/yuzu/configuration/configure_system.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_system.cpp b/src/yuzu/configuration/configure_system.cpp index d198e38ae..89e783687 100644 --- a/src/yuzu/configuration/configure_system.cpp +++ b/src/yuzu/configuration/configure_system.cpp | |||
| @@ -72,5 +72,6 @@ void ConfigureSystem::refreshConsoleID() { | |||
| 72 | if (reply == QMessageBox::No) | 72 | if (reply == QMessageBox::No) |
| 73 | return; | 73 | return; |
| 74 | u64 console_id{}; | 74 | u64 console_id{}; |
| 75 | ui->label_console_id->setText("Console ID: 0x" + QString::number(console_id, 16).toUpper()); | 75 | ui->label_console_id->setText( |
| 76 | tr("Console ID: 0x%1").arg(QString::number(console_id, 16).toUpper())); | ||
| 76 | } | 77 | } |