Browse Source
Merge pull request #7342 from goldenx86/patch-3
Replace keys error pop up
pull/15/merge
bunnei
4 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
2 deletions
-
src/yuzu/main.cpp
|
|
@ -3300,9 +3300,9 @@ void GMainWindow::OnReinitializeKeys(ReinitializeKeyBehavior behavior) { |
|
|
if (!errors.isEmpty()) { |
|
|
if (!errors.isEmpty()) { |
|
|
QMessageBox::warning( |
|
|
QMessageBox::warning( |
|
|
this, tr("Derivation Components Missing"), |
|
|
this, tr("Derivation Components Missing"), |
|
|
tr("Components are missing that may hinder key derivation from completing. " |
|
|
|
|
|
|
|
|
tr("Encryption keys are missing. " |
|
|
"<br>Please follow <a href='https://yuzu-emu.org/help/quickstart/'>the yuzu " |
|
|
"<br>Please follow <a href='https://yuzu-emu.org/help/quickstart/'>the yuzu " |
|
|
"quickstart guide</a> to get all your keys and " |
|
|
|
|
|
|
|
|
"quickstart guide</a> to get all your keys, firmware and " |
|
|
"games.<br><br><small>(%1)</small>") |
|
|
"games.<br><br><small>(%1)</small>") |
|
|
.arg(errors)); |
|
|
.arg(errors)); |
|
|
} |
|
|
} |
|
|
|