aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorThierry Crozat2016-09-18 16:39:11 +0100
committerThierry Crozat2016-09-18 16:40:34 +0100
commita87a702eb2f2dd0e40d9784e013f04ab12d52173 (patch)
treef43aea203aee054fd8b70cc5bd8593e91d22b3fa /engines/kyra
parente51dcbb153f94eeba35a56e02928582e84840713 (diff)
downloadscummvm-rg350-a87a702eb2f2dd0e40d9784e013f04ab12d52173.tar.gz
scummvm-rg350-a87a702eb2f2dd0e40d9784e013f04ab12d52173.tar.bz2
scummvm-rg350-a87a702eb2f2dd0e40d9784e013f04ab12d52173.zip
ALL: Homogeneize use of 'saved game' in messages
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/saveload_eob.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/kyra/saveload_eob.cpp b/engines/kyra/saveload_eob.cpp
index 9329d14255..7823064c3b 100644
--- a/engines/kyra/saveload_eob.cpp
+++ b/engines/kyra/saveload_eob.cpp
@@ -554,7 +554,7 @@ bool EoBCoreEngine::importOriginalSaveFile(int destSlot, const char *sourceFile)
}
delete fs;
- ::GUI::MessageDialog dialog(Common::String::format(_("The following original save game file has been found in your game path:\n\n%s %s\n\nDo you wish to use this save game file with ScummVM?\n\n"), temp.c_str(), dsc.c_str()), _("Yes"), _("No"));
+ ::GUI::MessageDialog dialog(Common::String::format(_("The following original saved game file has been found in your game path:\n\n%s %s\n\nDo you wish to use this saved game file with ScummVM?\n\n"), temp.c_str(), dsc.c_str()), _("Yes"), _("No"));
if (dialog.runModal())
origFiles.push_back(temp);
}
@@ -579,7 +579,7 @@ bool EoBCoreEngine::importOriginalSaveFile(int destSlot, const char *sourceFile)
// This will probably never happen, since we do have 990 save slots
if (assignedSlots != numFilesFound)
- warning("%d original save files could not be converted due to missing save game slots", numFilesFound - assignedSlots);
+ warning("%d original save files could not be converted due to missing saved game slots", numFilesFound - assignedSlots);
} else {
newSlots.push_back(destSlot);
@@ -587,7 +587,7 @@ bool EoBCoreEngine::importOriginalSaveFile(int destSlot, const char *sourceFile)
if (destSlot != -1) {
if (Common::find(_gui->_saveSlots.begin(), _gui->_saveSlots.end(), destSlot) != _gui->_saveSlots.end()) {
- ::GUI::MessageDialog dialog(Common::String::format(_("A save game file was found in the specified slot %d. Overwrite?\n\n"), destSlot), _("Yes"), _("No"));
+ ::GUI::MessageDialog dialog(Common::String::format(_("A saved game file was found in the specified slot %d. Overwrite?\n\n"), destSlot), _("Yes"), _("No"));
if (!dialog.runModal())
return false;
}
@@ -620,7 +620,7 @@ bool EoBCoreEngine::importOriginalSaveFile(int destSlot, const char *sourceFile)
_inf->reset();
if (destSlot == -1 && importedCount) {
- ::GUI::MessageDialog dialog(Common::String::format(_("%d original save game files have been successfully imported into\nScummVM. If you want to manually import original save game files later you will\nneed to open the ScummVM debug console and use the command 'import_savefile'.\n\n"), importedCount));
+ ::GUI::MessageDialog dialog(Common::String::format(_("%d original saved game files have been successfully imported into\nScummVM. If you want to manually import original saved game files later you will\nneed to open the ScummVM debug console and use the command 'import_savefile'.\n\n"), importedCount));
dialog.runModal();
}