summaryrefslogtreecommitdiff
path: root/src/profile.cpp
diff options
context:
space:
mode:
authorLostDragonist <lost.dragonist@gmail.com>2018-12-19 11:53:29 -0600
committerLostDragonist <lost.dragonist@gmail.com>2018-12-19 11:53:29 -0600
commit37a6989ba831aa077d63234a8e8b64eb9e8f3eb1 (patch)
tree51bab48729ec36c8022c42eb6018649a1ea2cc49 /src/profile.cpp
parent830b63c4e20ffe3fee1ebffc9b88c45305f6737d (diff)
Make language about profile-specific settings and save games consistent
Diffstat (limited to 'src/profile.cpp')
-rw-r--r--src/profile.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/profile.cpp b/src/profile.cpp
index f1bec4dd..9b93539d 100644
--- a/src/profile.cpp
+++ b/src/profile.cpp
@@ -748,9 +748,9 @@ bool Profile::enableLocalSaves(bool enable)
}
} else {
QMessageBox::StandardButton res = QMessageBox::question(
- QApplication::activeModalWidget(), tr("Delete savegames?"),
- tr("Do you want to delete local savegames? (If you select \"No\", the "
- "save games will show up again if you re-enable local savegames)"),
+ QApplication::activeModalWidget(), tr("Delete profile-specific save games?"),
+ tr("Do you want to delete the profile-specific save games? (If you select \"No\", the "
+ "save games will show up again if you re-enable profile-specific save games)"),
QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel,
QMessageBox::Cancel);
if (res == QMessageBox::Yes) {
@@ -796,7 +796,7 @@ bool Profile::enableLocalSettings(bool enable)
} else {
QMessageBox::StandardButton res = QMessageBox::question(
QApplication::activeModalWidget(), tr("Delete profile-specific game INI files?"),
- tr("Do you want to delete profile-specific game INI files? (If you select \"No\", the "
+ tr("Do you want to delete the profile-specific game INI files? (If you select \"No\", the "
"save games will be used again if you re-enable profile-specific game INI files.)"),
QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel,
QMessageBox::Cancel);