mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-08-15 14:43:32 -07:00
Expand the tooltip for population cap
This commit is contained in:
parent
b885acbd93
commit
b0f8cbadb9
1 changed files with 5 additions and 2 deletions
|
|
@ -32,7 +32,8 @@ class CounterPopulation
|
||||||
this.isTrainingBlocked = playerState.trainingBlocked;
|
this.isTrainingBlocked = playerState.trainingBlocked;
|
||||||
|
|
||||||
this.panel.tooltip =
|
this.panel.tooltip =
|
||||||
setStringTags(translate(this.PopulationTooltip), CounterManager.ResourceTitleTags) +
|
setStringTags(translate(this.PopulationTooltipTitle), CounterManager.ResourceTitleTags) +
|
||||||
|
"\n" + sprintf(this.PopulationTooltip, state) +
|
||||||
getAllyStatTooltip(this.getTooltipData.bind(this)) + "\n" +
|
getAllyStatTooltip(this.getTooltipData.bind(this)) + "\n" +
|
||||||
sprintf(this.CurrentGatherersTooltip, { "currentGatherers": colorizedTotal });
|
sprintf(this.CurrentGatherersTooltip, { "currentGatherers": colorizedTotal });
|
||||||
}
|
}
|
||||||
|
|
@ -65,7 +66,9 @@ class CounterPopulation
|
||||||
// Translation: Do not insert spaces around the slash symbol for this exact string. Keep only one space between popLimit and popMax.
|
// Translation: Do not insert spaces around the slash symbol for this exact string. Keep only one space between popLimit and popMax.
|
||||||
CounterPopulation.prototype.CounterCaption = markForTranslation("%(popCount)s/%(popLimit)s (%(popMax)s)");
|
CounterPopulation.prototype.CounterCaption = markForTranslation("%(popCount)s/%(popLimit)s (%(popMax)s)");
|
||||||
|
|
||||||
CounterPopulation.prototype.PopulationTooltip = markForTranslation("Population: current/limit (max)");
|
CounterPopulation.prototype.PopulationTooltipTitle = markForTranslation("Population");
|
||||||
|
CounterPopulation.prototype.PopulationTooltip =
|
||||||
|
translate("Current population: %(popCount)s\nPopulation limit: %(popLimit)s\nMaximum population: %(popMax)s");
|
||||||
|
|
||||||
CounterPopulation.prototype.AllyPopulationTooltip = markForTranslation("%(popCount)s/%(popLimit)s (%(popMax)s)");
|
CounterPopulation.prototype.AllyPopulationTooltip = markForTranslation("%(popCount)s/%(popLimit)s (%(popMax)s)");
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue