Files
klz-cables.com/.pnpm-store/v10/files/97/f8729e6acc5e6f13d975f6b632a0b9a300f2ad25449be31231a130279d11b1ec357a642b6d235d4bfdf01c653e2db087972083a38d76b9ab7ef6d232839286
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

16 lines
383 B
Plaintext

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "'të' eeee 'e shkuar në' p",
yesterday: "'dje në' p",
today: "'sot në' p",
tomorrow: "'nesër në' p",
nextWeek: "eeee 'at' p",
other: "P",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;