Rocky_Mountain_Vending/.pnpm-store/v10/files/c7/dd162d7b87e230714d8df457c169b868f8f63b9facff243274b635cf5e1167e7e3e974dad8809c59492160e9cd35c76d7b67fe05f89353c9310a39701350b1
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

29 lines
810 B
Text

import { formatDistance } from "./pt/_lib/formatDistance.js";
import { formatLong } from "./pt/_lib/formatLong.js";
import { formatRelative } from "./pt/_lib/formatRelative.js";
import { localize } from "./pt/_lib/localize.js";
import { match } from "./pt/_lib/match.js";
/**
* @category Locales
* @summary Portuguese locale.
* @language Portuguese
* @iso-639-2 por
* @author Dário Freire [@dfreire](https://github.com/dfreire)
* @author Adrián de la Rosa [@adrm](https://github.com/adrm)
*/
export const pt = {
code: "pt",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default pt;