1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  *
21  * This is a utility for extracting needed resource data from different language
22  * version of the Mortevielle executable files into a new file mort.dat - this
23  * is required for the ScummVM Mortevielle module to work properly
24  */
25 
26 #ifndef ENGINEDATA_H
27 #define ENGINEDATA_H
28 
29 const char *engineDataEn[] =  {
30 	"[2][ ][YES][NO]",
31 	"Go to",
32 	"Someone enters, looks surprised, but says nothing",
33 	"   Cool   ",
34 	"Oppressive",
35 	"  Tense   ",
36 	"Idem",
37 	"You",
38 	"are",
39 	"Alone",
40 
41 	"Gosh! You hear some noise...",
42 	" | You should have noticed,   |       ",
43 	"% of hints...",
44 	"Do you want to wake up?",
45 	"OK",
46 	"",
47 	" Save",
48 
49 	" Load",
50 	" Restart",
51 	"F3: Repeat",
52 	"F8: Proceed",
53 	"Hide self",
54 	"take",
55 	" probe    ",
56 	" raise    ",
57 	" -MORE- ",
58 	" -STOP-  ",
59 	"[1] [So, use the DEP menu] [Ok]",
60 	"lift",
61 	"read",
62 
63 	"look",
64 	"search",
65 	"open",
66 	"put",
67 	"turn",
68 	"tie",
69 	"close",
70 	"hit",
71 	"pose",
72 	"smash",
73 
74 	"smell",
75 	"scratch",
76 	"probe",
77 	"[1] [ | Before, use the DEP menu...] [Ok]",
78 	"& day",
79 	NULL
80 };
81 
82 const char *engineDataFr[] = {
83 	"[2][ ][OUI][NON]",
84 	"aller",
85 	"quelqu'un entre, parait \202tonn\202 mais ne dit rien",
86 	"Cool",
87 	" Lourde ",
88 	"Malsaine",
89 	"Idem",
90 	"Vous",
91 	"\210tes",
92 	"SEUL",
93 
94 	"Mince! Vous entendez du bruit...",
95 	" | Vous devriez avoir remarqu\202|       ",
96 	"% des indices...",
97 	"D\202sirez-vous vous r\202veiller?",
98 	"OK",
99 	"",
100 	" Sauvegarde",
101 
102 	" Chargement",
103 	" Recommence  ",
104 	"F3: Encore",
105 	"F8: Suite",
106 	"se cacher",
107 
108 	"prendre",
109 	"sonder",
110 	"soulever",
111 	" -SUITE- ",
112 	" -STOP-  ",
113 	"[1][Alors, utilisez le menu DEP...][ok]",
114 	"soulever",
115 	"lire",
116 
117 	"regarder",
118 	"fouiller",
119 	"ouvrir",
120 	"mettre",
121 	"tourner",
122 	"attacher",
123 	"fermer",
124 	"frapper",
125 	"poser",
126 	"d\202foncer",
127 
128 	"sentir",
129 	"gratter",
130 	"sonder",
131 	"[1][ | Avant, utilisez le menu DEP...][ok]",
132 	"& jour",
133 	NULL
134 };
135 
136 const char *engineDataDe[] =  {
137 	"[2][ ][JA][NEIN]",
138 	"gehen",
139 	"Jemand kommt herein, scheint erstaunt, sagt nichts",
140 	"Cool",
141 	"Schwer",
142 	"Ungesund",
143 	"Idem",
144 	"Sie",
145 	"sind",
146 	"allein",
147 
148 	"Verdammt! Sie hoeren ein Geraeush...",
149 	"Sie haetten ",
150 	"% der Hinweise|      bemerken muessen...",
151 	"Moechten Sie aufwachen?",
152 	"OK",
153 	"",
154 	" schreiben",
155 
156 	" lesen",
157 	" wieder      ",
158 	"F3: nochmals",
159 	"F8: stop",
160 	" sich verstecken",
161 	" nehmen",
162 	" sondieren",
163 	" hochheben",
164 	" -WEITER- ",
165 	" -STOP-  ",
166 	"[1][ Benutzen Sie jetzt das Menue DEP...][OK]",
167 	"hochheben",
168 	"lesen",
169 
170 	"anschauen",
171 	"durchsuchen",
172 	"oeffnen",
173 	"setzen",
174 	"drehen",
175 	"befestigen",
176 	"schliessen",
177 	"klopfen",
178 	"hinlegen",
179 	"eindruecken",
180 
181 	"fuehlen",
182 	"abkratzen",
183 	"sondieren",
184 	"[1][ Benutzen Sie jetzt das Menue DEP...][OK]",
185 	"& tag",
186 	NULL
187 };
188 
189 #endif
190