ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
option_text.h
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 modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (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, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 namespace Prince {
23 
24 // PL - Mazovia coding
25 const char invOptionsTextPL[5][18] = {
26  "Obejrzyj",
27  "U\xa7""yj",
28  "Otw\xa2""rz/Pchnij",
29  "Zamknij/Poci\x86""gnij",
30  "Daj"
31 };
32 
33 const char optionsTextPL[7][18] = {
34  "Podejd\xa6",
35  "Obejrzyj",
36  "Zabierz",
37  "U\xa7""yj",
38  "Otw\xa2""rz/Pchnij",
39  "Zamknij/Poci\x86""gnij",
40  "Porozmawiaj"
41 };
42 
43 // DE - Other font then for PL + ISO 8859-2 or Windows-1250
44 // + special letter values changing
45 // Normal value: 196, 214, 220, 223, 228, 246, 252
46 // Prince change: 131, 132, 133, 127, 128, 129, 130
47 char invOptionsTextDE[5][17] = {
48  "Anschauen",
49  "Benutzen",
50  "\x84""ffnen/Sto\x7f""en",
51  ("Schlie\x7f""en/Ziehen"),
52  "Geben"
53 };
54 
55 const char optionsTextDE[7][17] = {
56  "Hingehen",
57  "Anschauen",
58  "Wegnehmen",
59  "Benutzen",
60  "\x84""ffnen/Sto\x7f""en",
61  ("Schlie\x7f""en/Ziehen"),
62  "Ansprechen"
63 };
64 
65 // EN
66 const char *invOptionsTextEN[] = {
67  "Examine",
68  "Use",
69  "Open/Push",
70  "Close/Pull",
71  "Give"
72 };
73 
74 const char *optionsTextEN[] = {
75  "Walk to",
76  "Examine",
77  "Pick up",
78  "Use",
79  "Open/Push",
80  "Close/Pull",
81  "Talk to"
82 };
83 
84 // ES
85 const char *invOptionsTextES[] = {
86  "Examinar",
87  "Usar",
88  "Abrir/Empujar",
89  "Cerrar/Tirar de",
90  "Dar"
91 };
92 
93 const char *optionsTextES[] = {
94  "Ir hacia",
95  "Examinar",
96  "Coger",
97  "Usar",
98  "Abrir/Empujar",
99  "Cerrar/Tirar de",
100  "Hablar a"
101 };
102 
103 // RU
104 const char *invOptionsTextRU[] = {
105  "Cvjnhtnm",
106  "Bcgjkmp.",
107  "Jnrhsnm/""\x83""bnm ",
108  "Pfrhsnm/Nzyenm ",
109  "Lfnm "
110 };
111 
112 const char *optionsTextRU[] = {
113  "Gjljqnb",
114  "Jcvjnhtnm",
115  "Dpznm ",
116  "Bcgjkmp.",
117  "Jnrhsnm/""\x83""bnm ",
118  "Pfrhsnm/Nzyenm ",
119  "Ujdjhbnm "
120 };
121 
122 // RU localization from "Russian Project"
123 const char *invOptionsTextRU2[] = {
124  "n""\x91""\x8c""\x8e""\x92""\x90""\x85""\x92""\x9c",
125  "h""\x91""\x8f""\x8e""\x8b""\x9c""\x87"".",
126  "n""\x92""\x8a""\x90""\x9b""\x92""\x9c""/r""\x8e""\x8b""\x8a""\x80""\x92""\x9c",
127  "g""\x80""\x8a""\x90""\x9b""\x92""\x9c""/r""\x9f""\x8d""\x93""\x92""\x9c",
128  "d""\x80""\x92""\x9c"
129 };
130 
131 const char *optionsTextRU2[] = {
132  "o""\x8e""\x84""\x8e""\x89""\x92""\x88",
133  "n""\x91""\x8c""\x8e""\x92""\x90""\x85""\x92""\x9c",
134  "b""\x87""\x9f""\x92""\x9c",
135  "h""\x91""\x8f""\x8e""\x8b""\x9c""\x87"".",
136  "n""\x92""\x8a""\x90""\x9b""\x92""\x9c""/r""\x8e""\x8b""\x8a""\x80""\x92""\x9c",
137  "g""\x80""\x8a""\x90""\x9b""\x92""\x9c""/r""\x9f""\x8d""\x93""\x92""\x9c",
138  "c""\x8e""\x82""\x8e""\x90""\x88""\x92""\x9c"
139 };
140 
141 } // End of namespace Prince
Definition: animation.h:30