From 78e88b7a6ef0474f67c1393d498b378331f3ca40 Mon Sep 17 00:00:00 2001 From: Pengfei Date: Tue, 31 Aug 2021 15:36:38 +0800 Subject: [PATCH] UI text fix --- src/frontend/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/main.cpp b/src/frontend/main.cpp index 5cbc6b3..8811365 100644 --- a/src/frontend/main.cpp +++ b/src/frontend/main.cpp @@ -156,7 +156,7 @@ void MainDialog::LoadPresetConfig() { // Get status QString status = GetNANDText(list[i], list.size() > 1); if (list[i].version != Core::CurrentDumperVersion) { - status = tr("Version Dismatch"); + status = tr("Version Mismatch"); } else if (!IsConfigGood(list[i])) { status = tr("No Configuration Found"); } else if (!IsConfigComplete(list[i])) { @@ -209,7 +209,7 @@ void MainDialog::LaunchImportDialog() { // Display info regarding status if (config.version != Core::CurrentDumperVersion) { - QMessageBox::critical(this, tr("Version Dismatch"), + QMessageBox::critical(this, tr("Version Mismatch"), tr("You are using an unsupported version of threeSDumper.
Please " "ensure that you are using the most recent version of both " "threeSD and threeSDumper and try again."));