deploy: v0.12 fix 存档key名

This commit is contained in:
2026-06-24 03:09:02 +00:00
parent 7a08d49fe3
commit e0a5281119
58743 changed files with 7297269 additions and 39505 deletions
+34
View File
@@ -0,0 +1,34 @@
import { el as dateFnsEl } from "date-fns/locale";
import { DateLib } from "../classes/DateLib.js";
/** Greek locale extended with DayPicker-specific translations. */
export const el = {
...dateFnsEl,
labels: {
labelDayButton: (date, modifiers, options, dateLib) => {
const lib = dateLib ?? new DateLib(options);
let label = lib.format(date, "PPPP");
if (modifiers.today)
label = `Σήμερα, ${label}`;
if (modifiers.selected)
label = `${label}, επιλεγμένο`;
return label;
},
labelMonthDropdown: "Επιλέξτε μήνα",
labelNext: "Μετάβαση στον επόμενο μήνα",
labelPrevious: "Μετάβαση στον προηγούμενο μήνα",
labelWeekNumber: (weekNumber) => `Εβδομάδα ${weekNumber}`,
labelYearDropdown: "Επιλέξτε έτος",
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 = `Σήμερα, ${label}`;
}
return label;
},
labelNav: "Γραμμή πλοήγησης",
labelWeekNumberHeader: "Αριθμός εβδομάδας",
labelWeekday: (date, options, dateLib) => (dateLib ?? new DateLib(options)).format(date, "cccc"),
},
};