Files
klz-cables.com/.pnpm-store/v10/files/a4/050d063e8234243663279372adfa71fb3960cad9cb15d2be2c8aa0264358de627bbeb8b701d768eb1cfd3377c060f52bb6a0f859c413d363321e802afb47aa
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

28 lines
697 B
Plaintext

"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;