Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas N <andreas@mono-cvs.ximian.com>2003-07-30 22:03:40 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2003-07-30 22:03:40 +0400
commit629a596b68cc9012de171a264565ae01533a53fa (patch)
treeb27459451d77537e2caca693a76269763e909460 /mcs/class/System.Web/Assembly/Locale.cs
parent4bfc32b22eb58a8592a4829821a6ca771fd88454 (diff)
2003-07-30 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* Locale.cs: Added svn path=/trunk/mcs/; revision=16902
Diffstat (limited to 'mcs/class/System.Web/Assembly/Locale.cs')
-rw-r--r--mcs/class/System.Web/Assembly/Locale.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/mcs/class/System.Web/Assembly/Locale.cs b/mcs/class/System.Web/Assembly/Locale.cs
new file mode 100644
index 00000000000..a456449296f
--- /dev/null
+++ b/mcs/class/System.Web/Assembly/Locale.cs
@@ -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;
+ }
+}