All files / src/app/shared/components/language-selector supported-languages.enum.ts

100% Statements 16/16
100% Branches 2/2
100% Functions 1/1
100% Lines 16/16

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 4897x                               97x 97x 97x 97x 97x 97x 97x 97x 97x 97x 97x 97x 97x 97x         97x                          
import {
  csLocale,
  deLocale,
  esLocale,
  frLocale,
  idLocale,
  itLocale,
  jaLocale,
  koLocale,
  plLocale,
  ptBrLocale,
  zhCnLocale
} from 'ngx-bootstrap/chronos';
 
// When adding a new supported language make sure to add a test for it in:
// language-selector.component.spec.ts
export enum SupportedLanguages {
  'cs' = 'Čeština',
  'de-DE' = 'Deutsch',
  'en-US' = 'English',
  'es-ES' = 'Español',
  'fr-FR' = 'Français',
  'id-ID' = 'Bahasa Indonesia',
  'it-IT' = 'Italiano',
  'ja-JP' = '日本語',
  'ko-KR' = '한국어',
  'pl-PL' = 'Polski',
  'pt-BR' = 'Português',
  'zh-CN' = '中文 (简体)',
  'zh-TW' = '中文 (繁體)'
}
 
// Supported languages:
// https://github.com/valor-software/ngx-bootstrap/tree/development/src/chronos/i18n
export let languageBootstrapMapping = {
  cs: csLocale,
  de: deLocale,
  es: esLocale,
  fr: frLocale,
  id: idLocale,
  it: itLocale,
  ja: jaLocale,
  ko: koLocale,
  pl: plLocale,
  pt: ptBrLocale,
  zh: zhCnLocale
};