Can we implement any other date format instead of English date format i.e January ,February in FullCalender?

Viewed 16

I need to use Devanagari calender in the full calender instead of English calender in FullCalender.

1 Answers

According to the documentation, you can. You can even try and set the locale to 'hi' in the live demo.

To set the locale to Hindi in your project (to my knowledge, Hindi uses Devanagari writting):

import { Calendar } from '@fullcalendar/core';
import hiLocale from '@fullcalendar/core/locales/hi';
...
let calendar = new Calendar(calendarEl, {
  locale: hiLocale
});
Related