| 12345678910111213141516171819202122 |
- //
- // System.Globalization.Locale.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) 2001 Ximian, Inc (http://www.ximian.com)
- //
- namespace System.Globalization {
- internal class Locale {
- /// <summary>
- /// Returns the translated message for the current locale
- /// </summary>
- public static string GetText (string msg)
- {
- return msg;
- }
- }
- }
|