aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision
diff options
context:
space:
mode:
authorrootfather2016-11-26 16:14:28 +0100
committerrootfather2016-11-26 16:14:28 +0100
commit89168bb000b7fd15792743d3d3d8547aa2950ff9 (patch)
tree9026fe1ffbcc5952864e196021d33778d4e03ddc /engines/zvision
parentb0fe56dae9969292ad2bc0ac554530a6419f2a3b (diff)
downloadscummvm-rg350-89168bb000b7fd15792743d3d3d8547aa2950ff9.tar.gz
scummvm-rg350-89168bb000b7fd15792743d3d3d8547aa2950ff9.tar.bz2
scummvm-rg350-89168bb000b7fd15792743d3d3d8547aa2950ff9.zip
ZVISION: Enable translation for some more strings
Diffstat (limited to 'engines/zvision')
-rw-r--r--engines/zvision/POTFILES1
-rw-r--r--engines/zvision/file/save_manager.cpp8
2 files changed, 5 insertions, 4 deletions
diff --git a/engines/zvision/POTFILES b/engines/zvision/POTFILES
index 61cf42ded2..ea349df378 100644
--- a/engines/zvision/POTFILES
+++ b/engines/zvision/POTFILES
@@ -1 +1,2 @@
engines/zvision/detection_tables.h
+engines/zvision/file/save_manager.cpp
diff --git a/engines/zvision/file/save_manager.cpp b/engines/zvision/file/save_manager.cpp
index d169679e28..89c595c10c 100644
--- a/engines/zvision/file/save_manager.cpp
+++ b/engines/zvision/file/save_manager.cpp
@@ -217,11 +217,11 @@ bool SaveManager::readSaveGameHeader(Common::InSaveFile *in, SaveGameHeader &hea
uint tempVersion = header.version;
GUI::MessageDialog dialog(
Common::String::format(
- "This save file uses version %u, but this engine only "
- "supports up to version %d. You will need an updated version "
- "of the engine to use this save file.", tempVersion, SAVE_VERSION
+ _("This save file uses version %u, but this engine only "
+ "supports up to version %d. You will need an updated version "
+ "of the engine to use this save file."), tempVersion, SAVE_VERSION
),
- "OK");
+ _("OK"));
dialog.runModal();
}