view Translatable/TranslatableLabel.cs @ 28:73c1e3372b52

Re #47: Add translatable GTK# widgets * Add translatable button now that we know how to use it (with work-around for losing stock icon)
author IBBoard <dev@ibboard.co.uk>
date Thu, 30 Dec 2010 20:58:47 +0000
parents 2d76577e28ff
children
line wrap: on
line source

//  This file (TranslatableLabel.cs) is a part of the IBBoard.GtkSharp project and is copyright 2010 IBBoard
// 
// // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU LGPL 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.Lang;

namespace IBBoard.GtkSharp.Translatable
{
	[System.ComponentModel.ToolboxItem(true)]
	[System.ComponentModel.Category("Translatable")]
	public class TranslatableLabel : Label, ITranslatable
	{
		//Do nothing special
	}
}