BUG 2443: Fehlende Leerzeile im Kampfreport.

This commit is contained in:
Enno Rehling 2018-05-24 16:31:01 +02:00
parent 49178d8fc7
commit 9b3b376579
3 changed files with 6 additions and 6 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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);