From d59f6e2c554afd4df2dec8284dd5bffe412d86d5 Mon Sep 17 00:00:00 2001
From: Louis Moureaux
"); if (count > 0) { - // TRANS: "This city supports %1 agressive military units, resulting in X - // unhappy citizens." (first part) + // TRANS: "This city supports %1 agressive military units, resulting in + // up to X unhappy citizens." (first part) str += QString(PL_("This city supports %1 agressive military unit, ", "This city supports %1 agressive military units, ", count)) .arg(count); - // TRANS: "This city supports %1 agressive military units, resulting in X - // unhappy citizens." (second part) - str += QString(PL_("resulting in %1 additional unhappy citizen.", - "resulting in %1 additional unhappy citizens.", - pcity->unit_happy_upkeep)) - .arg(pcity->unit_happy_upkeep); + // TRANS: "This city supports X agressive military units, resulting in up + // to %1 unhappy citizens." (second part) + str += + QString( + PL_("resulting in up to %1 additional unhappy citizen.", + "resulting in up to %1 additional unhappy citizens.", + happy_upkeep)) + .arg(happy_upkeep); } else { str += _("Currently, military units do not cause additional unhappiness " "in this city.");