PARALLACTION: Translate buttons in load and save dialogs.

This commit is contained in:
Thierry Crozat 2016-02-20 21:04:16 +00:00
parent 41ff2a9f02
commit 181c12ba8f

View file

@ -194,7 +194,7 @@ int SaveLoad::selectSaveFile(Common::String &selectedName, bool saveMode, const
bool SaveLoad::loadGame() {
Common::String null;
int _di = selectSaveFile(null, false, "Load file", "Load");
int _di = selectSaveFile(null, false, _("Load file"), _("Load"));
if (_di == -1) {
return false;
}
@ -209,7 +209,7 @@ bool SaveLoad::loadGame() {
bool SaveLoad::saveGame() {
Common::String saveName;
int slot = selectSaveFile(saveName, true, "Save file", "Save");
int slot = selectSaveFile(saveName, true, _("Save file"), _("Save"));
if (slot == -1) {
return false;
}