view FrmAbout.cs @ 220:467decfdde8e

Closes #327: "Points" system should be used in UI * Add abbreviation and name as options to default name * Translation armySizePts now supports {0} (size), {1} (pts abbrev) and {2} (pts name) * Future additions of "points" systems should be coded with appropriate calls
author IBBoard <dev@ibboard.co.uk>
date Mon, 29 Aug 2011 15:17:59 +0100
parents 0bb9f40d44eb
children
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using IBBoard.Lang;
using IBBoard.Windows.Forms;
using IBBoard.Windows.Forms.I18N;

namespace IBBoard.WarFoundry.GUI.WinForms
{
	public partial class FrmAbout : IBBForm
	{
		public FrmAbout()
		{
			InitializeComponent();
			ControlTranslator.TranslateControl(this);
			lblVersion.Text = Translation.GetTranslation("lblVersion", "Version: {0}", FrmMain.VERSION);
		}
	}
}