您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

constants.js 573B

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. * The available/supported languages.
  3. *
  4. * XXX The element at index zero is the default language.
  5. *
  6. * @public
  7. * @type {Array<string>}
  8. */
  9. export const LANGUAGES = [
  10. 'en', // XXX The default language.
  11. 'bg',
  12. 'de',
  13. 'es',
  14. 'fr',
  15. 'hy',
  16. 'it',
  17. 'oc',
  18. 'pl',
  19. 'ptBR',
  20. 'ru',
  21. 'sk',
  22. 'sl',
  23. 'sv',
  24. 'tr'
  25. ];
  26. /**
  27. * The default language.
  28. *
  29. * XXX The element at index zero of {@link LANGUAGES} is the default language.
  30. *
  31. * @public
  32. * @type {string} The default language.
  33. */
  34. export const DEFAULT_LANGUAGE = LANGUAGES[0];