From 9b3b3765798cc8a8caf056f63a159b02a9dec6ea Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Thu, 24 May 2018 16:31:01 +0200 Subject: [PATCH] BUG 2443: Fehlende Leerzeile im Kampfreport. --- res/translations/messages.de.po | 4 ++-- res/translations/messages.en.po | 4 ++-- src/battle.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/res/translations/messages.de.po b/res/translations/messages.de.po index 98800fd31..13fd10c96 100644 --- a/res/translations/messages.de.po +++ b/res/translations/messages.de.po @@ -308,7 +308,7 @@ msgstr "\"$unit($mage) legt einen Schleier um die Ausrüstung von $unit.dative($ msgid "error5" msgstr "\"$unit($unit) in $region($region): '$order($command)' - Das Gebäude gehört uns nicht.\"" -msgid "tactics_lost" +msgid "para_tactics_lost" msgstr "\"$unit($unit) konnte dem Gegner eine Falle stellen.\"" msgid "error_lowstealth" @@ -1052,7 +1052,7 @@ msgstr "\"Diese Region wurde von den Göttern verflucht. Stinkende Nebel ziehen msgid "recruit_archetype" msgstr "\"$unit($unit) rekrutiert $int($amount) $localize($archetype).\"" -msgid "tactics_won" +msgid "para_tactics_won" msgstr "\"$unit($unit) überrascht den Gegner.\"" msgid "raindance_effect" diff --git a/res/translations/messages.en.po b/res/translations/messages.en.po index 9f11a6312..fa795d0f6 100644 --- a/res/translations/messages.en.po +++ b/res/translations/messages.en.po @@ -308,7 +308,7 @@ msgstr "\"$unit($mage) shrouds the equipment of $unit($target) in shadows.\"" msgid "error5" msgstr "\"$unit($unit) in $region($region): '$order($command)' - The building is not ours.\"" -msgid "tactics_lost" +msgid "para_tactics_lost" msgstr "\"$unit($unit) lured the enemy into an ambush.\"" msgid "error_lowstealth" @@ -1052,7 +1052,7 @@ msgstr "\"This region was cursed by the gods. Stinking vapors billow over the de msgid "recruit_archetype" msgstr "\"$unit($unit) recruits $int($amount) $localize($archetype).\"" -msgid "tactics_won" +msgid "para_tactics_won" msgstr "\"$unit($unit) surprises the enemies.\"" msgid "raindance_effect" diff --git a/src/battle.c b/src/battle.c index 1e0924aee..9092718a2 100644 --- a/src/battle.c +++ b/src/battle.c @@ -2960,10 +2960,10 @@ static void print_stats(battle * b) unit *u = tf->unit; message *m = NULL; if (!is_attacker(tf)) { - m = msg_message("tactics_lost", "unit", u); + m = msg_message("para_tactics_lost", "unit", u); } else { - m = msg_message("tactics_won", "unit", u); + m = msg_message("para_tactics_won", "unit", u); } message_all(b, m); msg_release(m);