Locale.cs 400 B

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