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-18 13:11:54 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2003-07-18 13:11:54 +0400
commit83b9e6e64f993820148f1f2150cd63de82274da0 (patch)
treef78184f1e051c289b42344f65c44acc869aca7aa /mcs/class/System/Assembly
parentff66548426ef2edb17b1ef3349f3d7c8ee7930f3 (diff)
2003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* Locale.cs: Added svn path=/trunk/mcs/; revision=16386
Diffstat (limited to 'mcs/class/System/Assembly')
-rw-r--r--mcs/class/System/Assembly/ChangeLog4
-rw-r--r--mcs/class/System/Assembly/Locale.cs24
2 files changed, 28 insertions, 0 deletions
diff --git a/mcs/class/System/Assembly/ChangeLog b/mcs/class/System/Assembly/ChangeLog
index 3f2b2f1d5ac..2306df752bb 100644
--- a/mcs/class/System/Assembly/ChangeLog
+++ b/mcs/class/System/Assembly/ChangeLog
@@ -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
index 00000000000..a456449296f
--- /dev/null
+++ b/mcs/class/System/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;
+ }
+}