diff api/Requirements/UnitRequirementMaxNumber.cs @ 229:6083010a005c

Re #223: Use translations within the API * Update requirements to use translations * Remove duplicate classes
author IBBoard <dev@ibboard.co.uk>
date Mon, 21 Dec 2009 20:37:35 +0000
parents 2f3cafb69799
children
line wrap: on
line diff
--- a/api/Requirements/UnitRequirementMaxNumber.cs	Sun Dec 20 20:59:28 2009 +0000
+++ b/api/Requirements/UnitRequirementMaxNumber.cs	Mon Dec 21 20:37:35 2009 +0000
@@ -3,6 +3,7 @@
 // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.
 
 using System;
+using IBBoard.Lang;
 using IBBoard.WarFoundry.API.Objects;
 
 namespace IBBoard.WarFoundry.API.Requirements
@@ -18,7 +19,7 @@
 		
 		public override string Description
 		{
-			get { return "You may only include up to "+maxUnitCount+" "+unitType.Name+" units in an army"; }
+			get { return Translation.GetTranslation("requirementUnitMaxNumber", "an army can contain up to {0} units of type {1}", maxUnitCount, unitType.Name); }
 		}
 		
 		protected override AbstractFailedRequirement CanAddToArmy (Army army, UnitType type)