Rocky_Mountain_Vending/.pnpm-store/v10/files/81/03ade4744f1341d81dfeb0238dfbb4b596512fc8821b8d0c6aa9cb5a1bf5129b676114cd66d57f74d3b2a343f6786b067918a931e648d5ffff9d94f229ff19
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

11 lines
505 B
Text

const formatRelativeLocale = {
lastWeek: "'ថ្ងៃ'eeee'ស​ប្តា​ហ៍​មុនម៉ោង' p",
yesterday: "'ម្សិលមិញនៅម៉ោង' p",
today: "'ថ្ងៃនេះម៉ោង' p",
tomorrow: "'ថ្ងៃស្អែកម៉ោង' p",
nextWeek: "'ថ្ងៃ'eeee'ស​ប្តា​ហ៍​ក្រោយម៉ោង' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];