|
|
@@ -0,0 +1,24 @@
|
|
|
+//
|
|
|
+// Locale.cs
|
|
|
+//
|
|
|
+// Author:
|
|
|
+// Miguel de Icaza ([email protected])
|
|
|
+// Andreas Nahr ([email protected])
|
|
|
+//
|
|
|
+// (C) 2001 - 2003 Ximian, Inc (http://www.ximian.com)
|
|
|
+//
|
|
|
+
|
|
|
+internal sealed class Locale {
|
|
|
+
|
|
|
+ private Locale ()
|
|
|
+ {
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Returns the translated message for the current locale
|
|
|
+ /// </summary>
|
|
|
+ public static string GetText (string msg)
|
|
|
+ {
|
|
|
+ return msg;
|
|
|
+ }
|
|
|
+}
|