mirror of
http://36.133.248.69:3088/admin/RentWeAppFront.git
synced 2026-03-13 20:32:25 +08:00
init
This commit is contained in:
81
node_modules/date-fns/locale/sk/_lib/formatRelative.mjs
generated
vendored
Normal file
81
node_modules/date-fns/locale/sk/_lib/formatRelative.mjs
generated
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
import { isSameWeek } from "../../../isSameWeek.mjs";
|
||||
|
||||
// https://www.unicode.org/cldr/charts/32/summary/sk.html?hide#1308
|
||||
const accusativeWeekdays = [
|
||||
"nedeľu",
|
||||
"pondelok",
|
||||
"utorok",
|
||||
"stredu",
|
||||
"štvrtok",
|
||||
"piatok",
|
||||
"sobotu",
|
||||
];
|
||||
|
||||
function lastWeek(day) {
|
||||
const weekday = accusativeWeekdays[day];
|
||||
|
||||
switch (day) {
|
||||
case 0: /* Sun */
|
||||
case 3: /* Wed */
|
||||
case 6 /* Sat */:
|
||||
return "'minulú " + weekday + " o' p";
|
||||
default:
|
||||
return "'minulý' eeee 'o' p";
|
||||
}
|
||||
}
|
||||
|
||||
function thisWeek(day) {
|
||||
const weekday = accusativeWeekdays[day];
|
||||
|
||||
if (day === 4 /* Thu */) {
|
||||
return "'vo' eeee 'o' p";
|
||||
} else {
|
||||
return "'v " + weekday + " o' p";
|
||||
}
|
||||
}
|
||||
|
||||
function nextWeek(day) {
|
||||
const weekday = accusativeWeekdays[day];
|
||||
|
||||
switch (day) {
|
||||
case 0: /* Sun */
|
||||
case 4: /* Wed */
|
||||
case 6 /* Sat */:
|
||||
return "'budúcu " + weekday + " o' p";
|
||||
default:
|
||||
return "'budúci' eeee 'o' p";
|
||||
}
|
||||
}
|
||||
|
||||
const formatRelativeLocale = {
|
||||
lastWeek: (date, baseDate, options) => {
|
||||
const day = date.getDay();
|
||||
if (isSameWeek(date, baseDate, options)) {
|
||||
return thisWeek(day);
|
||||
} else {
|
||||
return lastWeek(day);
|
||||
}
|
||||
},
|
||||
yesterday: "'včera o' p",
|
||||
today: "'dnes o' p",
|
||||
tomorrow: "'zajtra o' p",
|
||||
nextWeek: (date, baseDate, options) => {
|
||||
const day = date.getDay();
|
||||
if (isSameWeek(date, baseDate, options)) {
|
||||
return thisWeek(day);
|
||||
} else {
|
||||
return nextWeek(day);
|
||||
}
|
||||
},
|
||||
other: "P",
|
||||
};
|
||||
|
||||
export const formatRelative = (token, date, baseDate, options) => {
|
||||
const format = formatRelativeLocale[token];
|
||||
|
||||
if (typeof format === "function") {
|
||||
return format(date, baseDate, options);
|
||||
}
|
||||
|
||||
return format;
|
||||
};
|
||||
Reference in New Issue
Block a user