PARALLACTION: Translate buttons in load and save dialogs.
This commit is contained in:
parent
41ff2a9f02
commit
181c12ba8f
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue