diff --git a/rpcs3/rpcs3qt/gs_frame.cpp b/rpcs3/rpcs3qt/gs_frame.cpp
index 28fb14b4d1..fe116c5831 100644
--- a/rpcs3/rpcs3qt/gs_frame.cpp
+++ b/rpcs3/rpcs3qt/gs_frame.cpp
@@ -763,7 +763,7 @@ bool gs_frame::event(QEvent* ev)
Emu.CallAfter([this, &result, &called]()
{
m_gui_settings->ShowConfirmationBox(tr("Exit Game?"),
- tr("Do you really want to exit the game?\n\nAny unsaved progress will be lost!\n"),
+ tr("Do you really want to exit the game?
Any unsaved progress will be lost!
"),
gui::ib_confirm_exit, &result, nullptr);
called = true;
diff --git a/rpcs3/rpcs3qt/gui_settings.cpp b/rpcs3/rpcs3qt/gui_settings.cpp
index 1efd0a12d8..f08ed55e28 100644
--- a/rpcs3/rpcs3qt/gui_settings.cpp
+++ b/rpcs3/rpcs3qt/gui_settings.cpp
@@ -160,16 +160,16 @@ bool gui_settings::GetBootConfirmation(QWidget* parent, const gui_save& gui_save
if (!Emu.IsStopped())
{
QString title = tr("Close Running Game?");
- QString message = tr("Performing this action will close the current game.\nDo you really want to continue?\n\nAny unsaved progress will be lost!\n");
+ QString message = tr("Performing this action will close the current game.
Do you really want to continue?
Any unsaved progress will be lost!
");
if (gui_save_entry == gui::ib_confirm_boot)
{
- message = tr("Booting another game will close the current game.\nDo you really want to boot another game?\n\nAny unsaved progress will be lost!\n");
+ message = tr("Booting another game will close the current game.
Do you really want to boot another game?
Any unsaved progress will be lost!
");
}
else if (gui_save_entry == gui::ib_confirm_exit)
{
title = tr("Exit RPCS3?");
- message = tr("A game is currently running. Do you really want to close RPCS3?\n\nAny unsaved progress will be lost!\n");
+ message = tr("A game is currently running. Do you really want to close RPCS3?
Any unsaved progress will be lost!
");
}
int result = QMessageBox::Yes;
diff --git a/rpcs3/rpcs3qt/settings_dialog.cpp b/rpcs3/rpcs3qt/settings_dialog.cpp
index 54f38dea08..73ba11694a 100644
--- a/rpcs3/rpcs3qt/settings_dialog.cpp
+++ b/rpcs3/rpcs3qt/settings_dialog.cpp
@@ -1909,10 +1909,10 @@ int settings_dialog::exec()
m_gui_settings->ShowConfirmationBox(
tr("Remove obsolete settings?"),
tr(
- "Your config file contains one or more obsolete entries.\n"
- "Consider that a removal might render them invalid for other versions of RPCS3.\n"
- "\n"
- "Do you wish to let the program remove them for you now?\n"
+ "Your config file contains one or more obsolete entries.
"
+ "Consider that a removal might render them invalid for other versions of RPCS3.
"
+ "
"
+ "Do you wish to let the program remove them for you now?
"
"This change will only be final when you save the config."
), gui::ib_obsolete_cfg, &result, this);