aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/pregob/onceupon/brokenstrings.h
diff options
context:
space:
mode:
authorSven Hesse2012-07-01 15:55:02 +0200
committerSven Hesse2012-07-30 01:44:44 +0200
commit4663ab2373ac3230ccb95cc2accee87ddd1682b8 (patch)
treeda2be9c072fd558fbf5f8d9bd09b366fe7cf0e86 /engines/gob/pregob/onceupon/brokenstrings.h
parente477b7d2b996bb4a93b3d95fb5b08e01d64e3b03 (diff)
downloadscummvm-rg350-4663ab2373ac3230ccb95cc2accee87ddd1682b8.tar.gz
scummvm-rg350-4663ab2373ac3230ccb95cc2accee87ddd1682b8.tar.bz2
scummvm-rg350-4663ab2373ac3230ccb95cc2accee87ddd1682b8.zip
GOB: Fix some broken German text in Once Upon A Time
Diffstat (limited to 'engines/gob/pregob/onceupon/brokenstrings.h')
-rw-r--r--engines/gob/pregob/onceupon/brokenstrings.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/engines/gob/pregob/onceupon/brokenstrings.h b/engines/gob/pregob/onceupon/brokenstrings.h
new file mode 100644
index 0000000000..86c0603058
--- /dev/null
+++ b/engines/gob/pregob/onceupon/brokenstrings.h
@@ -0,0 +1,51 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+#ifndef GOB_PREGOB_ONCEUPON_BROKENSTRINGS_H
+#define GOB_PREGOB_ONCEUPON_BROKENSTRINGS_H
+
+struct BrokenString {
+ const char *wrong;
+ const char *correct;
+};
+
+struct BrokenStringLanguage {
+ const BrokenString *strings;
+ uint count;
+};
+
+static const BrokenString kBrokenStringsGerman[] = {
+ { "Zeichungen von Kaki," , "Zeichnungen von Kaki," },
+ { "die es in seine Wachtr\204ume", "die es in seine Tagtr\204ume" },
+ { " Spielerfahrung" , " Spielerfahren" },
+ { " Fortgeschrittene" , " Fortgeschritten" }
+};
+
+static const BrokenStringLanguage kBrokenStrings[kLanguageCount] = {
+ { 0, 0 }, // French
+ { kBrokenStringsGerman, ARRAYSIZE(kBrokenStringsGerman) }, // German
+ { 0, 0 }, // English
+ { 0, 0 }, // Spanish
+ { 0, 0 }, // Italian
+};
+
+#endif // GOB_PREGOB_ONCEUPON_BROKENSTRINGS_H