mirror of
https://github.com/ARMSX2/ARMSX2.git
synced 2026-08-24 16:50:16 -07:00
Qt: Add translate tag to shutdown message (#7302)
This commit is contained in:
@@ -1135,7 +1135,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(save_state);
|
||||
|
||||
Reference in New Issue
Block a user