| 123456789101112131415161718192021222324 |
- //
- // 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;
- }
- }
|