Переглянути джерело

2003-08-11 Andreas Nahr <[email protected]>

	* Locale.cs: Added

svn path=/trunk/mcs/; revision=17249
Andreas N 22 роки тому
батько
коміт
4608244d35

+ 4 - 0
mcs/class/System.XML/Assembly/ChangeLog

@@ -1,3 +1,7 @@
+2003-08-11  Andreas Nahr <[email protected]>
+
+	* Locale.cs: Added
+
 2003-07-14  Andreas Nahr <[email protected]>
 
 	* AssemblyInfo.cs: Added

+ 24 - 0
mcs/class/System.XML/Assembly/Locale.cs

@@ -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;
+	}
+}