react-day-picker
Version:
Customizable Date Picker for React
35 lines (34 loc) • 1.46 kB
JavaScript
import { enAU as dateFnsEnAU } from "date-fns/locale";
import { DateLib } from "../classes/DateLib.js";
/** English (Australia) locale extended with DayPicker-specific translations. */
export const enAU = {
...dateFnsEnAU,
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"),
},
};