Initial commit

This commit is contained in:
Ammaar Reshi
2025-01-04 14:06:53 +00:00
parent 7082408604
commit d6025af146
23760 changed files with 3299690 additions and 0 deletions

27
node_modules/date-fns/locale/el/_lib/formatRelative.js generated vendored Normal file
View File

@@ -0,0 +1,27 @@
"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: (date) => {
switch (date.getDay()) {
case 6: //Σάββατο
return "'το προηγούμενο' eeee 'στις' p";
default:
return "'την προηγούμενη' eeee 'στις' p";
}
},
yesterday: "'χθες στις' p",
today: "'σήμερα στις' p",
tomorrow: "'αύριο στις' p",
nextWeek: "eeee 'στις' p",
other: "P",
};
const formatRelative = (token, date) => {
const format = formatRelativeLocale[token];
if (typeof format === "function") return format(date);
return format;
};
exports.formatRelative = formatRelative;