Explorar el Código

2003-07-30 Andreas Nahr <[email protected]>

	* Locale.cs: Added

svn path=/trunk/mcs/; revision=16902
Andreas N hace 22 años
padre
commit
629a596b68

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

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

+ 24 - 0
mcs/class/System.Web/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;
+	}
+}