ashishgkwd / ngx-mat-daterange-picker

Date range picker component based of Angular Material Calendar component and configurable date presets. Packaged using ng-packagr.
https://multi-ngx-mat-daterange-picker-example.stackblitz.io
33 stars 34 forks source link

Problems with localization #25

Open Crowdium opened 5 years ago

Crowdium commented 5 years ago

Thanks for this great component.

I'm trying to localize the datepicker into spanish. I tried using the option locale:'es' but nothing changes, neither the month names nor the rest of the text.

Is there any way to easily localize the component without editing the vendor files?

klocus commented 5 years ago

Hi!

Just override MAT_DATE_LOCALE on providers at app.module.ts:

import {MAT_DATE_LOCALE} from '@angular/material/core';

@NgModule({
  providers: [
    {provide: MAT_DATE_LOCALE, useValue: 'es-ES'},
  ],
})
rwenig026 commented 3 years ago

Is it possible to specify the language at runtime? Our customers should have the choice to switch between languages