From 6936f830ea397bb29ca6ef58e983e33c9467af2d Mon Sep 17 00:00:00 2001 From: Thierry Crozat Date: Mon, 29 Apr 2013 22:34:30 +0100 Subject: 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). --- engines/dreamweb/monitor.cpp | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'engines/dreamweb/monitor.cpp') 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; } -- cgit v1.2.3