diff Widgets/UnitDisplayWidget.cs @ 135:fda46380dd68

Re #329: "Points" system should be used in UI * Replace fixed "pts" or "pt" with game system's text (May be fixed, but needs more testing)
author IBBoard <dev@ibboard.co.uk>
date Sun, 09 Oct 2011 21:03:09 +0100
parents b4416ca69153
children
line wrap: on
line diff
--- a/Widgets/UnitDisplayWidget.cs	Sun Oct 09 20:37:53 2011 +0100
+++ b/Widgets/UnitDisplayWidget.cs	Sun Oct 09 21:03:09 2011 +0100
@@ -229,7 +229,7 @@
 			}
 			else
 			{
-				translation = Translation.GetTranslation("equipmentAmountWithCost", "{0} ({1} at {2}pts each)", item.Name, GetAmountString(item), item.Cost);
+				translation = Translation.GetTranslation("equipmentAmountWithCost", "{0} ({1} at {2}{3} each)", item.Name, GetAmountString(item), item.Cost, WarFoundryCore.CurrentGameSystem.GetPointsAbbrev(item.Cost));
 			}
 
 			return translation;