Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
44 lines
983 B
Text
44 lines
983 B
Text
"use strict";
|
|
exports.formatRelative = void 0;
|
|
|
|
const formatRelativeLocale = {
|
|
lastWeek: (date) => {
|
|
switch (date.getDay()) {
|
|
case 0:
|
|
return "'prošle nedjelje u' p";
|
|
case 3:
|
|
return "'prošle srijede u' p";
|
|
case 6:
|
|
return "'prošle subote u' p";
|
|
default:
|
|
return "'prošli' EEEE 'u' p";
|
|
}
|
|
},
|
|
yesterday: "'juče u' p",
|
|
today: "'danas u' p",
|
|
tomorrow: "'sutra u' p",
|
|
nextWeek: (date) => {
|
|
switch (date.getDay()) {
|
|
case 0:
|
|
return "'sljedeće nedjelje u' p";
|
|
case 3:
|
|
return "'sljedeću srijedu u' p";
|
|
case 6:
|
|
return "'sljedeću subotu u' p";
|
|
default:
|
|
return "'sljedeći' EEEE 'u' p";
|
|
}
|
|
},
|
|
other: "P",
|
|
};
|
|
|
|
const formatRelative = (token, date, _baseDate, _options) => {
|
|
const format = formatRelativeLocale[token];
|
|
|
|
if (typeof format === "function") {
|
|
return format(date);
|
|
}
|
|
|
|
return format;
|
|
};
|
|
exports.formatRelative = formatRelative;
|