diff options
author | Joseph-Eugene Winzer | 2017-08-11 21:50:22 +0200 |
---|---|---|
committer | Thierry Crozat | 2018-01-23 01:13:53 +0000 |
commit | 830f983d837dabd27ff026dabfc4199f7846835d (patch) | |
tree | 8722484d9bfab4a0d6ee74f2c8131413d507c554 | |
parent | f0b638d762a05dba9af9362833d82ad9973a95f2 (diff) | |
download | scummvm-rg350-830f983d837dabd27ff026dabfc4199f7846835d.tar.gz scummvm-rg350-830f983d837dabd27ff026dabfc4199f7846835d.tar.bz2 scummvm-rg350-830f983d837dabd27ff026dabfc4199f7846835d.zip |
SUPERNOVA: Adds text
-rw-r--r-- | engines/supernova/msn_def.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/supernova/msn_def.h b/engines/supernova/msn_def.h index 02a38d54a6..f38bbd2b80 100644 --- a/engines/supernova/msn_def.h +++ b/engines/supernova/msn_def.h @@ -423,6 +423,10 @@ enum ObjectID { TICKETS }; + +static const char *const broken_DE = "Hmm, er scheint kaputt zu sein."; +static const char *const broken_EN = "Hmm, it seems to be broken."; + static const char *const guiCommand_DE[] = { "Gehe", "Schau", @@ -436,9 +440,9 @@ static const char *const guiCommand_DE[] = { "Gib" }; -static const char *guiStatusCommand_DE[10] = +static const char *const guiStatusCommand_DE[10] = {"Gehe zu ","Schau ","Nimm ","\231ffne ","Schlie\341e ","Dr\201cke ","Ziehe ","Benutze ","Rede mit ","Gib "}; -static const char *guiStatusCommand_EN[10] = +static const char *const guiStatusCommand_EN[10] = {"Go to ", "Look at ", "Take ", "Open ", "Close ", "Press ", "Pull ", "Use ", "Talk to ", "Give "}; ObjectType operator|(ObjectType a, ObjectType b); |