diff options
| author | 2018-03-23 15:24:21 +0100 | |
|---|---|---|
| committer | 2018-03-25 11:42:46 +0200 | |
| commit | d248b90c852469abcf74f78a97d5f0a150d4c519 (patch) | |
| tree | f9b0a375c89398600926d80a2635c3579a34757f /src | |
| parent | Merge pull request #264 from valentinvanelslande/cmd-dynarmic (diff) | |
| download | yuzu-d248b90c852469abcf74f78a97d5f0a150d4c519.tar.gz yuzu-d248b90c852469abcf74f78a97d5f0a150d4c519.tar.xz yuzu-d248b90c852469abcf74f78a97d5f0a150d4c519.zip | |
main.cpp: Update Dialog from citra to yuzu
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/main.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index eb22a8ccf..78febb4eb 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -673,18 +673,18 @@ void GMainWindow::UpdateStatusBar() { | |||
| 673 | void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string details) { | 673 | void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string details) { |
| 674 | QMessageBox::StandardButton answer; | 674 | QMessageBox::StandardButton answer; |
| 675 | QString status_message; | 675 | QString status_message; |
| 676 | const QString common_message = | 676 | const QString common_message = tr( |
| 677 | tr("The game you are trying to load requires additional files from your 3DS to be dumped " | 677 | "The game you are trying to load requires additional files from your Switch to be dumped " |
| 678 | "before playing.<br/><br/>For more information on dumping these files, please see the " | 678 | "before playing.<br/><br/>For more information on dumping these files, please see the " |
| 679 | "following wiki page: <a " | 679 | "following wiki page: <a " |
| 680 | "href='https://citra-emu.org/wiki/" | 680 | "href='https://citra-emu.org/wiki/" |
| 681 | "dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>Dumping System " | 681 | "dumping-system-archives-and-the-shared-fonts-from-a-3ds-console/'>Dumping System " |
| 682 | "Archives and the Shared Fonts from a 3DS Console</a>.<br/><br/>Would you like to quit " | 682 | "Archives and the Shared Fonts from a Switch Console</a>.<br/><br/>Would you like to quit " |
| 683 | "back to the game list? Continuing emulation may result in crashes, corrupted save " | 683 | "back to the game list? Continuing emulation may result in crashes, corrupted save " |
| 684 | "data, or other bugs."); | 684 | "data, or other bugs."); |
| 685 | switch (result) { | 685 | switch (result) { |
| 686 | case Core::System::ResultStatus::ErrorSystemFiles: { | 686 | case Core::System::ResultStatus::ErrorSystemFiles: { |
| 687 | QString message = "Citra was unable to locate a 3DS system archive"; | 687 | QString message = "yuzu was unable to locate a Switch system archive"; |
| 688 | if (!details.empty()) { | 688 | if (!details.empty()) { |
| 689 | message.append(tr(": %1. ").arg(details.c_str())); | 689 | message.append(tr(": %1. ").arg(details.c_str())); |
| 690 | } else { | 690 | } else { |
| @@ -699,7 +699,7 @@ void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string det | |||
| 699 | } | 699 | } |
| 700 | 700 | ||
| 701 | case Core::System::ResultStatus::ErrorSharedFont: { | 701 | case Core::System::ResultStatus::ErrorSharedFont: { |
| 702 | QString message = tr("Citra was unable to locate the 3DS shared fonts. "); | 702 | QString message = tr("yuzu was unable to locate the Switch shared fonts. "); |
| 703 | message.append(common_message); | 703 | message.append(common_message); |
| 704 | answer = QMessageBox::question(this, tr("Shared Fonts Not Found"), message, | 704 | answer = QMessageBox::question(this, tr("Shared Fonts Not Found"), message, |
| 705 | QMessageBox::Yes | QMessageBox::No, QMessageBox::No); | 705 | QMessageBox::Yes | QMessageBox::No, QMessageBox::No); |