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

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

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

index 3f2b2f1d5ac4edab1a140ef6bec11d58b9493804..2306df752bbba2952bab1c4c5f7481906a063d23 100644 (file)
@@ -1,3 +1,7 @@
+2003-07-18  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * Locale.cs: Added
+
 2003-07-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
 
        * Consts.cs: Added
diff --git a/mcs/class/System/Assembly/Locale.cs b/mcs/class/System/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;
+       }
+}