Rocky_Mountain_Vending/.pnpm-store/v10/files/d6/efc8c15baadb5935b63effdcb0031b3d505b36daa382c49db40b12965ce79a6d94bb9c65cfb6f0f8bba2731ff7a56104b8c407ef815a2aefa7394903cee236
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

31 lines
941 B
Text

import { formatDistance } from "./pl/_lib/formatDistance.js";
import { formatLong } from "./pl/_lib/formatLong.js";
import { formatRelative } from "./pl/_lib/formatRelative.js";
import { localize } from "./pl/_lib/localize.js";
import { match } from "./pl/_lib/match.js";
/**
* @category Locales
* @summary Polish locale.
* @language Polish
* @iso-639-2 pol
* @author Mateusz Derks [@ertrzyiks](https://github.com/ertrzyiks)
* @author Just RAG [@justrag](https://github.com/justrag)
* @author Mikolaj Grzyb [@mikolajgrzyb](https://github.com/mikolajgrzyb)
* @author Mateusz Tokarski [@mutisz](https://github.com/mutisz)
*/
export const pl = {
code: "pl",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default pl;