2003-07-30 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
authorAndreas N <andreas@mono-cvs.ximian.com>
Wed, 30 Jul 2003 18:03:40 +0000 (18:03 -0000)
committerAndreas N <andreas@mono-cvs.ximian.com>
Wed, 30 Jul 2003 18:03:40 +0000 (18:03 -0000)
* Locale.cs: Added

svn path=/trunk/mcs/; revision=16902

mcs/class/System.Web/Assembly/ChangeLog
mcs/class/System.Web/Assembly/Locale.cs [new file with mode: 0644]

index af48689417e90a66cdc1a40d748138a018089a51..f318ce6497478c829e5d9946b0c808109acefbb6 100644 (file)
@@ -1,3 +1,7 @@
+2003-07-30  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * Locale.cs: Added
+
 2003-07-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
 
        * AssemblyInfo.cs: Added
diff --git a/mcs/class/System.Web/Assembly/Locale.cs b/mcs/class/System.Web/Assembly/Locale.cs
new file mode 100644 (file)
index 0000000..a456449
--- /dev/null
@@ -0,0 +1,24 @@
+//
+// Locale.cs
+//
+// Author:
+//   Miguel de Icaza (miguel@ximian.com)
+//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+//
+// (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;
+       }
+}