I'm using the ngx-bootstrap datepicker for my Angular 6 project and I need to use the italian locale; with the official guide (https://valor-software.com/ngx-bootstrap/#/datepicker#locales) i figured out this problem and now my datepickers look in italian, but I have another problem.
To have datepicker in italian, I had to import in every component the BsLocaleService and use in the onInit function the _localeService.use('it') method; my question is, can I se globally the italian locale in my app, without call the function to set locale in every component?
I tried to use the set locale function in the AppComponent, but it doesn't work.
Thanks guys