Rocky_Mountain_Vending/.pnpm-store/v10/files/a5/d91c2816d1f94f63c680a5c172f702d56d1e25b84c07539e87f524ace2fd081a5fa85bdc12bf0ccfff95038159f035a86dc75b51717aec33b1b99e42593abd
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

14 lines
459 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) => formatRelativeLocale[token];
exports.formatRelative = formatRelative;