Skip to content

Commit

Permalink
DEVTOOLS: Add missing string to create_titanic data
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Jan 15, 2017
1 parent 2d69d67 commit 45a42ec
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions devtools/create_titanic/create_titanic_dat.cpp
Expand Up @@ -416,10 +416,11 @@ static const BedheadEntry OFF_RESTING_D_WRONG[1] = {
{ "Any", "Any", "Any", "ClosedWrong", 59, 70 }
};

static const char *const STRINGS_EN[137] = {
static const char *const STRINGS_EN[138] = {
"",
"You are standing outside the Pellerator.",
"I'm sorry, you cannot enter this pellerator at present as a bot is in the way.",
"I'm sorry, you cannot enter this pellerator at present as it's frozen shut",
"The Succ-U-Bus is in Standby, or \"Off\" mode at present.",
"There is currently nothing to deliver.",
"There is currently nothing in the tray to send.",
Expand Down Expand Up @@ -561,10 +562,12 @@ static const char *const STRINGS_EN[137] = {
"Current location: "
};

static const char *const STRINGS_DE[182] = {
static const char *const STRINGS_DE[183] = {
// TODO: Still many strings to translate to German
"",
"Sie befinden sich vor dem Pellerator.",
"Wir bedauern, da ein Bot den Weg versperrt, ist Ihnen der "
"Zutritt zum Pellerator Ihnen gegenwSrtig verwehrt.",
"Wir bedauern, Zutritt zu diesem Pellerator ist nicht m\0xF6"
"glich, da die T\0xFC" "r zugefroren ist.",
"Der Sukk-U-Bus befindet sich gegenwSrtig im Standby-oder \"AUS\"-Betrieb.",
Expand Down Expand Up @@ -1250,8 +1253,8 @@ void writeData() {
writeStringArray("TEXT/ITEM_NAMES", ITEM_NAMES, 46);
writeStringArray("TEXT/ITEM_IDS", ITEM_IDS, 40);
writeStringArray("TEXT/ROOM_NAMES", ROOM_NAMES, 34);
writeStringArray("TEXT/STRINGS", STRINGS_EN, 137);
writeStringArray("TEXT/STRINGS/DE", STRINGS_DE, 182);
writeStringArray("TEXT/STRINGS", STRINGS_EN, 138);
writeStringArray("TEXT/STRINGS/DE", STRINGS_DE, 183);
const int TEXT_PHRASES[3] = { 0x61D3C8, 0x618340, 0x61B1E0 };
const int TEXT_REPLACEMENTS1[3] = { 0x61D9B0, 0x61C788, 0x61B7C8 };
const int TEXT_REPLACEMENTS2[3] = { 0x61DD20, 0x61CAF8, 0x61BB38 };
Expand Down

0 comments on commit 45a42ec

Please sign in to comment.