aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThierry Crozat2013-04-29 22:34:30 +0100
committerThierry Crozat2013-04-29 22:35:51 +0100
commit6936f830ea397bb29ca6ef58e983e33c9467af2d (patch)
treef920483e2b08b73cca4802523be75f985492abb6
parent83be4f7ebde865076ce06d33ef826b4381c479c2 (diff)
downloadscummvm-rg350-6936f830ea397bb29ca6ef58e983e33c9467af2d.tar.gz
scummvm-rg350-6936f830ea397bb29ca6ef58e983e33c9467af2d.tar.bz2
scummvm-rg350-6936f830ea397bb29ca6ef58e983e33c9467af2d.zip
DREAMWEB: Add commands in Spanish for the Network Terminal
Also changed the German HELP command to HILF at the translator request (which means both HILF and HILFE work since the parser only matches the start of the string).
-rw-r--r--engines/dreamweb/monitor.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/engines/dreamweb/monitor.cpp b/engines/dreamweb/monitor.cpp
index b07fbf54fc..2ac8ddc70a 100644
--- a/engines/dreamweb/monitor.cpp
+++ b/engines/dreamweb/monitor.cpp
@@ -148,7 +148,7 @@ bool DreamWebEngine::execCommand() {
static const char *const comlistDE[] = {
"ENDE",
- "HILFE",
+ "HILF",
"LISTE",
"LIES",
"ZUGRIFF",
@@ -165,6 +165,16 @@ bool DreamWebEngine::execCommand() {
"CHIAVI",
NULL
};
+
+ static const char *const comlistES[] = {
+ "SALIR",
+ "AYUDA",
+ "LISTA",
+ "LEER",
+ "IDENTIFICARSE",
+ "CLAVES",
+ NULL
+ };
if (_inputLine[0] == 0) {
// No input
@@ -186,6 +196,8 @@ bool DreamWebEngine::execCommand() {
cmd = findCommand(comlistIT);
break;
case Common::ES_ESP:
+ cmd = findCommand(comlistES);
+ break;
default:
break;
}