changeset 94:6bbcb3ef79d2

Re #47: Add translatable GTK# widgets * Remove "set" part of Name in translatable interface as not all GTK widgets support it and it isn't necessary
author IBBoard <dev@ibboard.co.uk>
date Tue, 28 Dec 2010 13:52:06 +0000
parents 9532955aeed3
children 746b89819dd9
files Lang/ITranslatable.cs
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Lang/ITranslatable.cs	Sat Oct 30 14:23:46 2010 +0000
+++ b/Lang/ITranslatable.cs	Tue Dec 28 13:52:06 2010 +0000
@@ -11,7 +11,8 @@
 	/// </summary>
 	public interface ITranslatable
 	{
-		string Name{ get; set;}
+		string Name{ get; }
+
 		string Text{ get; set;}
 	}
 }