// // System.Globalization.Locale.cs // // Author: // Miguel de Icaza (miguel@ximian.com) // // (C) 2001 Ximian, Inc (http://www.ximian.com) // namespace System.Globalization { internal class Locale { /// /// Returns the translated message for the current locale /// public static string GetText (string msg) { return msg; } } }