aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/tattoo/tattoo_fixed_text.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2015-08-05 21:52:41 -0400
committerPaul Gilbert2015-08-05 21:52:41 -0400
commitdc3e1eda8bfb6a21f31c36585e19dbe28d351966 (patch)
tree3ca10d2847ee643d10ae1007198ac5527ebbacf7 /engines/sherlock/tattoo/tattoo_fixed_text.cpp
parented4ae8c863e2de2143453c770f492ddf9ba1689c (diff)
downloadscummvm-rg350-dc3e1eda8bfb6a21f31c36585e19dbe28d351966.tar.gz
scummvm-rg350-dc3e1eda8bfb6a21f31c36585e19dbe28d351966.tar.bz2
scummvm-rg350-dc3e1eda8bfb6a21f31c36585e19dbe28d351966.zip
SHERLOCK: RT: Added german fixed text list
Diffstat (limited to 'engines/sherlock/tattoo/tattoo_fixed_text.cpp')
-rw-r--r--engines/sherlock/tattoo/tattoo_fixed_text.cpp85
1 files changed, 84 insertions, 1 deletions
diff --git a/engines/sherlock/tattoo/tattoo_fixed_text.cpp b/engines/sherlock/tattoo/tattoo_fixed_text.cpp
index c07a028b21..5d6e1b7e42 100644
--- a/engines/sherlock/tattoo/tattoo_fixed_text.cpp
+++ b/engines/sherlock/tattoo/tattoo_fixed_text.cpp
@@ -106,11 +106,94 @@ static const char *const FIXED_TEXT_ENGLISH[] = {
"No"
};
+static const char *const FIXED_TEXT_GERMAN[] = {
+ "Geld",
+ "S. Holmes",
+ "Tabak",
+ "Plan",
+ "Aufforderg.",
+ "Blatt pap.",
+ "Dunstig pap",
+ "Handlampe",
+
+ "Geld",
+ "S. Holmes",
+ "Tabak",
+ "Plan",
+ "Aufforderg.",
+ "Pergament",
+ "Dunstig pap",
+ "Handlampe",
+
+ "ffne",
+ "Schau",
+ "Rede",
+ "Benutze",
+ "Journal",
+ "Inventory",
+ "Options",
+ "Losen",
+ "mit",
+ "Keine Wirkung...",
+ "Diese Person weic im Augenblick nichts zu berichten.",
+
+ "Seite %d",
+ "Schliecen",
+ "Lessen",
+ "In Datei sichern",
+ "Suche abbrechen",
+ "Rbckwarts suchen ",
+ "Vorwarts suchen ",
+ "Text nicht gefunden",
+
+ "Holmes",
+ "Jock",
+ "Bull",
+ "Runde",
+ "Gesamt",
+ "Pfeil",
+ "zum Starten",
+ "Taste dracken",
+ "Taste dracken",
+ "Bullseye",
+ "SPIEL BEENDET",
+ "VERLOREN",
+ "Gewinnt",
+ "Erzielte",
+ "Punkte",
+ "Treffer",
+ "Doppel",
+ "Dreifach",
+
+ "Benutze",
+ "Wasser",
+ "Erhitze",
+ "Spiel laden",
+ "Spiel sichern",
+ "Musik",
+ "Soundeffekte",
+ "Voices",
+ "Textfenster",
+ "Transparente Menbs",
+ "Schriftart andern",
+ "Aus",
+ "An",
+ "Ende",
+ "Spiel beenden? ",
+ "Sind Sie sicher ?",
+ "Ja",
+ "Nein"
+};
+
TattooFixedText::TattooFixedText(SherlockEngine *vm) : FixedText(vm) {
+ if (vm->getLanguage() == Common::DE_DEU)
+ _fixedText = FIXED_TEXT_GERMAN;
+ else
+ _fixedText = FIXED_TEXT_ENGLISH;
}
const char *TattooFixedText::getText(int fixedTextId) {
- return FIXED_TEXT_ENGLISH[fixedTextId];
+ return _fixedText[fixedTextId];
}
const Common::String TattooFixedText::getActionMessage(FixedTextActionId actionId, int messageIndex) {