UI text fix

This commit is contained in:
Pengfei
2021-08-31 15:36:38 +08:00
parent 13da4913c9
commit 78e88b7a6e
+2 -2
View File
@@ -156,7 +156,7 @@ void MainDialog::LoadPresetConfig() {
// Get status // Get status
QString status = GetNANDText(list[i], list.size() > 1); QString status = GetNANDText(list[i], list.size() > 1);
if (list[i].version != Core::CurrentDumperVersion) { if (list[i].version != Core::CurrentDumperVersion) {
status = tr("Version Dismatch"); status = tr("Version Mismatch");
} else if (!IsConfigGood(list[i])) { } else if (!IsConfigGood(list[i])) {
status = tr("No Configuration Found"); status = tr("No Configuration Found");
} else if (!IsConfigComplete(list[i])) { } else if (!IsConfigComplete(list[i])) {
@@ -209,7 +209,7 @@ void MainDialog::LaunchImportDialog() {
// Display info regarding status // Display info regarding status
if (config.version != Core::CurrentDumperVersion) { 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.<br>Please " tr("You are using an unsupported version of threeSDumper.<br>Please "
"ensure that you are using the most recent version of both " "ensure that you are using the most recent version of both "
"threeSD and threeSDumper and try again.")); "threeSD and threeSDumper and try again."));