language.constants.ts 352B

12345678910
  1. /*
  2. Languages codes are ISO_639-1 codes, see http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
  3. They are written in English to avoid character encoding issues (not a perfect solution)
  4. */
  5. export const LANGUAGES: string[] = [
  6. 'en',
  7. 'es'
  8. // jhipster-needle-i18n-language-constant - JHipster will add/remove languages in this array
  9. ];