Rocky_Mountain_Vending/.pnpm-store/v10/files/b8/3e443149265c8d4a344b54326f0d215c737b2258a20ce0d8390402e5ae1a863a5609dc3d134b85db0599bb2ba99d9bcbc4ceb69edf7c93c24c653c050e4078
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

15 lines
403 B
Text

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "'mu dheireadh' eeee 'aig' p", //FIX
yesterday: "'an-dè aig' p",
today: "'an-diugh aig' p",
tomorrow: "'a-màireach aig' p",
nextWeek: "eeee 'aig' p",
other: "P",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;