Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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