Rocky_Mountain_Vending/.pnpm-store/v10/files/a3/17386bc5273519badec9d7fc0640b9987f869abc1fc557ee86cd7dda38d427dbc5572bbcd3c471597def0ffb78a56be0d3cb4984292e03ddafdd9935173b83
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
855 B
Text

import { formatDistance } from "./pt-BR/_lib/formatDistance.js";
import { formatLong } from "./pt-BR/_lib/formatLong.js";
import { formatRelative } from "./pt-BR/_lib/formatRelative.js";
import { localize } from "./pt-BR/_lib/localize.js";
import { match } from "./pt-BR/_lib/match.js";
/**
* @category Locales
* @summary Portuguese locale (Brazil).
* @language Portuguese
* @iso-639-2 por
* @author Lucas Duailibe [@duailibe](https://github.com/duailibe)
* @author Yago Carballo [@yagocarballo](https://github.com/YagoCarballo)
*/
export const ptBR = {
code: "pt-BR",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 0 /* Sunday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default ptBR;