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 48 | 97x 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
};
|