Rocky_Mountain_Vending/.pnpm-store/v10/files/88/6036c405456fc58c0fe4715e6ff44ca752d31f67601dea1d7ab9ca2e9ac1c670cf3c33a87cd8908c6b981958983322c0723f626af72f8db4599e6db21bab4b
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

28 lines
746 B
Text

import { formatDistance } from "./uz/_lib/formatDistance.js";
import { formatLong } from "./uz/_lib/formatLong.js";
import { formatRelative } from "./uz/_lib/formatRelative.js";
import { localize } from "./uz/_lib/localize.js";
import { match } from "./uz/_lib/match.js";
/**
* @category Locales
* @summary Uzbek locale.
* @language Uzbek
* @iso-639-2 uzb
* @author Mukhammadali [@mukhammadali](https://github.com/Mukhammadali)
*/
export const uz = {
code: "uz",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default uz;