diff options
author | Eugene Sandulenko | 2016-11-29 23:17:49 +0100 |
---|---|---|
committer | GitHub | 2016-11-29 23:17:49 +0100 |
commit | 5bed4bf794cdd52dca843aa548d4fcf16fd48d50 (patch) | |
tree | 9a60d05dedd8dd5bb3c5c1200e57c4076eb613e3 /gui/saveload-dialog.cpp | |
parent | 47d60cca42d36aaf01f5e40d780b06899b526b03 (diff) | |
parent | e95c2cc3ff1dc696fb2c3d952931a3af314c2e5b (diff) | |
download | scummvm-rg350-5bed4bf794cdd52dca843aa548d4fcf16fd48d50.tar.gz scummvm-rg350-5bed4bf794cdd52dca843aa548d4fcf16fd48d50.tar.bz2 scummvm-rg350-5bed4bf794cdd52dca843aa548d4fcf16fd48d50.zip |
Merge pull request #864 from BenCastricum/editing
ALL: Unify messages wording
Diffstat (limited to 'gui/saveload-dialog.cpp')
-rw-r--r-- | gui/saveload-dialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/saveload-dialog.cpp b/gui/saveload-dialog.cpp index af02e36c13..4bd71d39cf 100644 --- a/gui/saveload-dialog.cpp +++ b/gui/saveload-dialog.cpp @@ -574,7 +574,7 @@ void SaveLoadChooserSimple::updateSelection(bool redraw) { if (startEditMode) { _list->startEditMode(); - if (_chooseButton->isEnabled() && _list->getSelectedString() == _("Untitled savestate") && + if (_chooseButton->isEnabled() && _list->getSelectedString() == _("Untitled saved game") && _list->getSelectionColor() == ThemeEngine::kFontColorAlternate) { _list->setEditString(""); _list->setEditColor(ThemeEngine::kFontColorNormal); @@ -657,12 +657,12 @@ void SaveLoadChooserSimple::updateSaveList() { } } - // Show "Untitled savestate" for empty/whitespace saved game descriptions + // Show "Untitled saved game" for empty/whitespace saved game descriptions Common::String description = x->getDescription(); Common::String trimmedDescription = description; trimmedDescription.trim(); if (trimmedDescription.empty()) { - description = _("Untitled savestate"); + description = _("Untitled saved game"); colors.push_back(ThemeEngine::kFontColorAlternate); } else { colors.push_back((x->getLocked() ? ThemeEngine::kFontColorAlternate : ThemeEngine::kFontColorNormal)); |