25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
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. }