The locale property specifies the locale used by the JavaScript Month component.
DayPilot.Month.localeYou can specify the locale using a DayPilot.Locale object or a locale id string, for example "en-us".
JavaScript
const dp = new DayPilot.Month("dp", {
locale: "en-us",
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
locale: "en-us",
// ...
};React
<DayPilotMonth
locale="en-us"
{/* ... */}
/>Vue
<DayPilotMonth
locale="en-us"
<!-- ... -->
/>Localization [doc.daypilot.org]