1
0
forked from 0ad/0ad

Put the colon inside the translate tag.

This was SVN commit r15186.
This commit is contained in:
scythetwirler 2014-05-21 03:02:54 +00:00
parent 153b1162fb
commit e0fb1223d6

View File

@ -521,7 +521,7 @@ function setupUnitPanel(guiName, usedPanels, unitEntState, playerState, items, c
if (template.attack)
tooltip += "\n" + getEntityAttack(template);
if (template.armour)
tooltip += "\n[font=\"sans-bold-13\"]" + translate("Armour") + ":[/font] " + armorTypesToText(template.armour);
tooltip += "\n[font=\"sans-bold-13\"]" + translate("Armour:") + "[/font] " + armorTypesToText(template.armour);
if (template.speed)
tooltip += "\n" + getEntitySpeed(template);
}