Home > Enterprise >  how to change the display days' names in angular - bootstrap calendar?
how to change the display days' names in angular - bootstrap calendar?

Time:03-30

I use angular bootstrap calendar and I want to change the display days' names to another lanuage. How can I do this?

This is the code:

<mwl-calendar-month-view [viewDate]="viewDate" [events]="events" (dayClicked)="dayClicked($event.day)" (eventClicked)="eventClick($event)">
</mwl-calendar-month-view>

CodePudding user response:

I can see that the developer has implemented the pipe functionality. Pipes are used to format a variety of data and you can find a lot of examples in the angular documentation. Regarding the calendar, the developer also describes how to use pipes in the calendar. Right here: https://mattlewis92.github.io/angular-calendar/docs/pipes/CalendarDatePipe.html#info

  • Related