summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/main.cpp22
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() {
673void GMainWindow::OnCoreError(Core::System::ResultStatus result, std::string details) { 673void 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);