Mercurial > repos > IBDev-IBBoard.WarFoundry.GUI.GTK
view FrmAbout.cs @ 82:fb16ca1cb52b
Re #308: Make GTK# UI translatable
* Match button names to WinForms for consistency
* Translate army column title
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 28 Dec 2010 20:20:16 +0000 |
parents | 9c9af2ce8c43 |
children | e40d892a2298 |
line wrap: on
line source
// This file (FrmAbout.cs) is a part of the IBBoard.WarFoundry.GUI.GTK project and is copyright 2010 IBBoard // // 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 Gtk; using IBBoard.GtkSharp.Translatable; namespace IBBoard.WarFoundry.GUI.GTK { public partial class FrmAbout : TranslatableDialog { private static FrmAbout frm; public static FrmAbout GetForm() { if (frm == null) { frm = new FrmAbout(); } return frm; } private FrmAbout() { this.Build(); ControlTranslator.TranslateWidget(this); } protected virtual void OkayClicked(object sender, System.EventArgs e) { Respond(ResponseType.Ok); } } }