Rocky_Mountain_Vending/.pnpm-store/v10/files/0e/1b2957baa3c992baa57638368bad9be9a371949c84275d591af05d725b008844bc1cf8cbff141522df5a22359a7a872d368f80139f7b0e67af5f7374ba9e06
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

30 lines
876 B
Text

import { formatDistance } from "./ro/_lib/formatDistance.js";
import { formatLong } from "./ro/_lib/formatLong.js";
import { formatRelative } from "./ro/_lib/formatRelative.js";
import { localize } from "./ro/_lib/localize.js";
import { match } from "./ro/_lib/match.js";
/**
* @category Locales
* @summary Romanian locale.
* @language Romanian
* @iso-639-2 ron
* @author Sergiu Munteanu [@jsergiu](https://github.com/jsergiu)
* @author Adrian Ocneanu [@aocneanu](https://github.com/aocneanu)
* @author Mihai Ocneanu [@gandesc](https://github.com/gandesc)
*/
export const ro = {
code: "ro",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default ro;