選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

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