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

22 lines
353 B

  1. using System;
  2. namespace CIG.Translation.Native
  3. {
  4. public static class SystemLocale
  5. {
  6. public static string[] DefaultLanguages
  7. {
  8. get
  9. {
  10. if (SystemLocale._langs == null)
  11. {
  12. SystemLocale._langs = AndroidLocale.GetLanguages();
  13. }
  14. return SystemLocale._langs;
  15. }
  16. }
  17. private static string[] _langs;
  18. }
  19. }