[Scummvm-cvs-logs] scummvm master -> 6936f830ea397bb29ca6ef58e983e33c9467af2d
criezy
criezy at scummvm.org
Mon Apr 29 23:38:49 CEST 2013
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
6936f830ea DREAMWEB: Add commands in Spanish for the Network Terminal
Commit: 6936f830ea397bb29ca6ef58e983e33c9467af2d
https://github.com/scummvm/scummvm/commit/6936f830ea397bb29ca6ef58e983e33c9467af2d
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2013-04-29T14:35:51-07:00
Commit Message:
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).
Changed paths:
engines/dreamweb/monitor.cpp
diff --git a/engines/dreamweb/monitor.cpp b/engines/dreamweb/monitor.cpp
index b07fbf5..2ac8ddc 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;
}
More information about the Scummvm-git-logs
mailing list