35 lines
1.4 KiB
JavaScript
35 lines
1.4 KiB
JavaScript
import { enNZ as dateFnsEnNZ } from "date-fns/locale";
|
|
import { DateLib } from "../classes/DateLib.js";
|
|
/** English (New Zealand) locale extended with DayPicker-specific translations. */
|
|
export const enNZ = {
|
|
...dateFnsEnNZ,
|
|
labels: {
|
|
labelDayButton: (date, modifiers, options, dateLib) => {
|
|
const lib = dateLib ?? new DateLib(options);
|
|
let label = lib.format(date, "PPPP");
|
|
if (modifiers.today)
|
|
label = `Today, ${label}`;
|
|
if (modifiers.selected)
|
|
label = `${label}, selected`;
|
|
return label;
|
|
},
|
|
labelMonthDropdown: "Choose the Month",
|
|
labelNext: "Go to the Next Month",
|
|
labelPrevious: "Go to the Previous Month",
|
|
labelWeekNumber: (weekNumber) => `Week ${weekNumber}`,
|
|
labelYearDropdown: "Choose the Year",
|
|
labelGrid: (date, options, dateLib) => (dateLib ?? new DateLib(options)).formatMonthYear(date),
|
|
labelGridcell: (date, modifiers, options, dateLib) => {
|
|
const lib = dateLib ?? new DateLib(options);
|
|
let label = lib.format(date, "PPPP");
|
|
if (modifiers?.today) {
|
|
label = `Today, ${label}`;
|
|
}
|
|
return label;
|
|
},
|
|
labelNav: "Navigation bar",
|
|
labelWeekNumberHeader: "Week Number",
|
|
labelWeekday: (date, options, dateLib) => (dateLib ?? new DateLib(options)).format(date, "cccc"),
|
|
},
|
|
};
|