You can use the locale property to apply culture-specific settings (such as date format, first day of week….).
const calendar = new DayPilot.Calendar("calendar", {
locale: "en-au",
// ...
});
calendar.init();
For column headers, you can use the timeHeaderFormat property to set the desired pattern, or manually customize the text or HTML using the onBeforeHeaderRender event handler.