Rocky_Mountain_Vending/.pnpm-store/v10/files/e5/bd97270d6675c80cea5eea945eaa687abee9fc72a14aae2e8c715936045723c4f0672c1a923c15fdf08fdcccb233f12a9a3e7e801ee53c3e6ca0f11cbffa55
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
456 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;