You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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 };