Address bug #4105.
This commit is contained in:
parent
683a5007f8
commit
d8e717dd0d
1 changed files with 7 additions and 3 deletions
|
@ -360,9 +360,13 @@ LEVEL_RESULT playsingle_controller::play_scenario(const std::vector<config*>& st
|
|||
<< (remaining_gold+finishing_bonus);
|
||||
}
|
||||
|
||||
// xgettext:no-c-format
|
||||
report << '\n' << _("80% of gold is retained for the next scenario") << '\n'
|
||||
<< font::BOLD_TEXT << _("Retained Gold: ") << player->gold;
|
||||
if (remaining_gold > 100)
|
||||
// xgettext:no-c-format
|
||||
report << '\n' << _("80% of gold is retained for the next scenario.");
|
||||
else
|
||||
report << '\n' << _("You will start the next scenario with 100 gold.");
|
||||
|
||||
report << '\n' << font::BOLD_TEXT << _("Retained Gold: ") << player->gold;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue