Rocky_Mountain_Vending/.pnpm-store/v10/files/aa/ba98b826964d4c7ddae0fd39d2f4b32c2ee4a0ae08527d19f9c730bd30b9d0d627b6dcf7019e9495ac4912e474fa2006889df3fff7b702d19991a2690d3e19
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
494 B
Text

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "eeee'ที่แล้วเวลา' p",
yesterday: "'เมื่อวานนี้เวลา' p",
today: "'วันนี้เวลา' p",
tomorrow: "'พรุ่งนี้เวลา' p",
nextWeek: "eeee 'เวลา' p",
other: "P",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;