forked from github/server
BUG 2443: Fehlende Leerzeile im Kampfreport.
This commit is contained in:
parent
49178d8fc7
commit
9b3b376579
3 changed files with 6 additions and 6 deletions
|
@ -308,7 +308,7 @@ msgstr "\"$unit($mage) legt einen Schleier um die Ausrüstung von $unit.dative($
|
||||||
msgid "error5"
|
msgid "error5"
|
||||||
msgstr "\"$unit($unit) in $region($region): '$order($command)' - Das Gebäude gehört uns nicht.\""
|
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.\""
|
msgstr "\"$unit($unit) konnte dem Gegner eine Falle stellen.\""
|
||||||
|
|
||||||
msgid "error_lowstealth"
|
msgid "error_lowstealth"
|
||||||
|
@ -1052,7 +1052,7 @@ msgstr "\"Diese Region wurde von den Göttern verflucht. Stinkende Nebel ziehen
|
||||||
msgid "recruit_archetype"
|
msgid "recruit_archetype"
|
||||||
msgstr "\"$unit($unit) rekrutiert $int($amount) $localize($archetype).\""
|
msgstr "\"$unit($unit) rekrutiert $int($amount) $localize($archetype).\""
|
||||||
|
|
||||||
msgid "tactics_won"
|
msgid "para_tactics_won"
|
||||||
msgstr "\"$unit($unit) überrascht den Gegner.\""
|
msgstr "\"$unit($unit) überrascht den Gegner.\""
|
||||||
|
|
||||||
msgid "raindance_effect"
|
msgid "raindance_effect"
|
||||||
|
|
|
@ -308,7 +308,7 @@ msgstr "\"$unit($mage) shrouds the equipment of $unit($target) in shadows.\""
|
||||||
msgid "error5"
|
msgid "error5"
|
||||||
msgstr "\"$unit($unit) in $region($region): '$order($command)' - The building is not ours.\""
|
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.\""
|
msgstr "\"$unit($unit) lured the enemy into an ambush.\""
|
||||||
|
|
||||||
msgid "error_lowstealth"
|
msgid "error_lowstealth"
|
||||||
|
@ -1052,7 +1052,7 @@ msgstr "\"This region was cursed by the gods. Stinking vapors billow over the de
|
||||||
msgid "recruit_archetype"
|
msgid "recruit_archetype"
|
||||||
msgstr "\"$unit($unit) recruits $int($amount) $localize($archetype).\""
|
msgstr "\"$unit($unit) recruits $int($amount) $localize($archetype).\""
|
||||||
|
|
||||||
msgid "tactics_won"
|
msgid "para_tactics_won"
|
||||||
msgstr "\"$unit($unit) surprises the enemies.\""
|
msgstr "\"$unit($unit) surprises the enemies.\""
|
||||||
|
|
||||||
msgid "raindance_effect"
|
msgid "raindance_effect"
|
||||||
|
|
|
@ -2960,10 +2960,10 @@ static void print_stats(battle * b)
|
||||||
unit *u = tf->unit;
|
unit *u = tf->unit;
|
||||||
message *m = NULL;
|
message *m = NULL;
|
||||||
if (!is_attacker(tf)) {
|
if (!is_attacker(tf)) {
|
||||||
m = msg_message("tactics_lost", "unit", u);
|
m = msg_message("para_tactics_lost", "unit", u);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
m = msg_message("tactics_won", "unit", u);
|
m = msg_message("para_tactics_won", "unit", u);
|
||||||
}
|
}
|
||||||
message_all(b, m);
|
message_all(b, m);
|
||||||
msg_release(m);
|
msg_release(m);
|
||||||
|
|
Loading…
Reference in a new issue