You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 line
206 B

  1. using System;
  2. namespace CIG.Translation.Native
  3. {
  4. public static class WSALocale
  5. {
  6. public static string[] GetLanguages()
  7. {
  8. return new string[]
  9. {
  10. "en",
  11. "nl"
  12. };
  13. }
  14. }
  15. }