From 90573986dd7dceb7eeeaf4352d07e566be2fe859 Mon Sep 17 00:00:00 2001 From: xujibbs <79200793+xujibbs@users.noreply.github.com> Date: Sat, 29 Oct 2022 18:50:33 +0800 Subject: [PATCH] Update mainwindow.cpp --- src/duckstation-qt/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/duckstation-qt/mainwindow.cpp b/src/duckstation-qt/mainwindow.cpp index e03cc9410..dc55274dd 100644 --- a/src/duckstation-qt/mainwindow.cpp +++ b/src/duckstation-qt/mainwindow.cpp @@ -2450,7 +2450,7 @@ bool MainWindow::requestShutdown(bool allow_confirm /* = true */, bool allow_sav QMessageBox msgbox(lock.getDialogParent()); msgbox.setIcon(QMessageBox::Question); msgbox.setWindowTitle(tr("Confirm Shutdown")); - msgbox.setText("Are you sure you want to shut down the virtual machine?"); + msgbox.setText(tr("Are you sure you want to shut down the virtual machine?)"); QCheckBox* save_cb = new QCheckBox(tr("Save State For Resume"), &msgbox); save_cb->setChecked(allow_save_to_state && save_state);