From a42a256ca0cb61caf5f868273bd807faa342c233 Mon Sep 17 00:00:00 2001 From: josteph Date: Fri, 13 Sep 2019 05:17:53 +0000 Subject: [PATCH] fixup! Clarify descriptions of income and upkeep. --- src/reports.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reports.cpp b/src/reports.cpp index fc16f4c8580..bf562d972b6 100644 --- a/src/reports.cpp +++ b/src/reports.cpp @@ -1442,7 +1442,7 @@ REPORT_GENERATOR(upkeep, rc) const team &viewing_team = rc.dc().get_team(viewing_side); team_data td(rc.dc(), viewing_team); str << td.expenses << " (" << td.upkeep << ")"; - return gray_inactive(rc,str.str(), _("Upkeep") + "\n\n" + _("The expenses incurred at the end of every turn to maintain your army. The first number is the amount of gold that will be deducted. It is equal to the number of unit-levels not covered by base income, village income and village support. The second is the total cost of upkeep, including that covered by villages — in other words, the amount of gold that would be deducted if you lost all villages.")); + return gray_inactive(rc,str.str(), _("Upkeep") + "\n\n" + _("The expenses incurred at the end of every turn to maintain your army. The first number is the amount of gold that will be deducted. It is equal to the number of unit levels not covered by base income, village income and village support. The second is the total cost of upkeep, including that covered by villages — in other words, the amount of gold that would be deducted if you lost all villages.")); } REPORT_GENERATOR(expenses, rc)