Mercurial > repos > IBBoard.WarFoundry.GUI.WinForms
comparison Util/UnitEquipmentChoice.cs @ 193:eaa7b639d390
* Fix build issues
no-open-ticket
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 03 Apr 2011 14:50:34 +0000 |
parents | 1ca23c47345a |
children |
comparison
equal
deleted
inserted
replaced
192:0ad6bb578c1e | 193:eaa7b639d390 |
---|---|
38 { | 38 { |
39 translation = Translation.GetTranslation("equipmentAmountWithZeroCost", "{0} ({1} - free)", item.Name, GetAmountString()); | 39 translation = Translation.GetTranslation("equipmentAmountWithZeroCost", "{0} ({1} - free)", item.Name, GetAmountString()); |
40 } | 40 } |
41 else | 41 else |
42 { | 42 { |
43 translation = Translation.GetTranslation("equipmentAmountWithCost", "{0} ({1} at {2}pts each)", item.Name, GetAmountString(), item.Cost, CurrentGameSystem.UsePointsAbbrev(item.Cost)); | 43 translation = Translation.GetTranslation("equipmentAmountWithCost", "{0} ({1} at {2}pts each)", item.Name, GetAmountString(), item.Cost, CurrentGameSystem.GetPointsAbbrev(item.Cost)); |
44 } | 44 } |
45 | 45 |
46 return translation; | 46 return translation; |
47 } | 47 } |
48 | 48 |