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

constants.js 321B

12345678910111213
  1. import languages from '../../../../service/translation/languages';
  2. /**
  3. * The default language globally for the project.
  4. *
  5. * @type {string} the default language globally for the project.
  6. */
  7. export const DEFAULT_LANG = languages.EN;
  8. /**
  9. * Exports the list of languages currently supported.
  10. */
  11. export { languages };