问题
How i can change de langiage os BSdatePicker to pt_br I tried to modify in bs-locale-service so i have this mensage of error Khronos locale error: please load locale "pt-br" before using it
回答1:
First step is to add locale to Chronos
import { defineLocale } from 'ngx-bootstrap/chronos';
import { ptBrLocale } from 'ngx-bootstrap/locale';
defineLocale('pt-br', ptBrLocale);
Second step, say datepicker to use this locale:
constructor(private localeService: BsLocaleService) {
localeService.use('pt-br');
}
来源:https://stackoverflow.com/questions/50260815/change-language-to-pt-br-ngx-boostrap