Locale.cs 374 B

12345678910111213141516171819202122
  1. //
  2. // System.Globalization.Locale.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) 2001 Ximian, Inc (http://www.ximian.com)
  8. //
  9. namespace System.Globalization {
  10. internal class Locale {
  11. /// <summary>
  12. /// Returns the translated message for the current locale
  13. /// </summary>
  14. public static string GetText (string msg)
  15. {
  16. return msg;
  17. }
  18. }
  19. }