Address bug #4105.

This commit is contained in:
Eric S. Raymond 2007-08-29 09:30:32 +00:00
parent 683a5007f8
commit d8e717dd0d

View file

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