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 { be as dateFnsBe } from "date-fns/locale";
import { DateLib } from "../classes/DateLib.js";
/** Belarusian locale extended with DayPicker-specific translations. */
export const be = {
...dateFnsBe,
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"),
},
};