Rocky_Mountain_Vending/.pnpm-store/v10/files/ec/a05288415ba882e1909a6218ddda4028af3ffdb1297930ceafa9a935a7f111b63a9dd1ea13b5eef01223ee9e6fa1c39a29ac139d77da891aea15d129e5e540
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

28 lines
696 B
Text

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "'el' eeee 'passat a la' LT",
yesterday: "'ahir a la' p",
today: "'avui a la' p",
tomorrow: "'demà a la' p",
nextWeek: "eeee 'a la' p",
other: "P",
};
const formatRelativeLocalePlural = {
lastWeek: "'el' eeee 'passat a les' p",
yesterday: "'ahir a les' p",
today: "'avui a les' p",
tomorrow: "'demà a les' p",
nextWeek: "eeee 'a les' p",
other: "P",
};
const formatRelative = (token, date, _baseDate, _options) => {
if (date.getHours() !== 1) {
return formatRelativeLocalePlural[token];
}
return formatRelativeLocale[token];
};
exports.formatRelative = formatRelative;