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).
This commit is contained in:
Thierry Crozat 2013-04-29 22:34:30 +01:00
parent 83be4f7ebd
commit 6936f830ea

View File

@ -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;
}