Rocky_Mountain_Vending/.pnpm-store/v10/files/b4/11b0727de53bffb88a48712768f3e32c5b173e1fb8f581366397cb341aaca42ef77791f782afb738a03d404b2ed9e10f9dbe0398eeceed0e604e116b240cd3
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
398 B
Text

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "'eelmine' eeee 'kell' p",
yesterday: "'eile kell' p",
today: "'täna kell' p",
tomorrow: "'homme kell' p",
nextWeek: "'järgmine' eeee 'kell' p",
other: "P",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;