view FrmAbout.cs @ 149:def0c33a662c WarFoundry_v0.1RC1_Winforms WarFoundry_v0.1beta9_Winforms

Re #203: Translate WarFoundry * Migrate Italian to using accented UTF-8 characters instead of character codes Also: * Commit minor changes to resources made by VS.Net
author IBBoard <dev@ibboard.co.uk>
date Sat, 24 Apr 2010 10:56:40 +0000
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);
		}
	}
}