UNPKG

941 BJavaScriptView Raw
1import { formatDistance } from "./pl/_lib/formatDistance.js";
2import { formatLong } from "./pl/_lib/formatLong.js";
3import { formatRelative } from "./pl/_lib/formatRelative.js";
4import { localize } from "./pl/_lib/localize.js";
5import { match } from "./pl/_lib/match.js";
6
7/**
8 * @category Locales
9 * @summary Polish locale.
10 * @language Polish
11 * @iso-639-2 pol
12 * @author Mateusz Derks [@ertrzyiks](https://github.com/ertrzyiks)
13 * @author Just RAG [@justrag](https://github.com/justrag)
14 * @author Mikolaj Grzyb [@mikolajgrzyb](https://github.com/mikolajgrzyb)
15 * @author Mateusz Tokarski [@mutisz](https://github.com/mutisz)
16 */
17export const pl = {
18 code: "pl",
19 formatDistance: formatDistance,
20 formatLong: formatLong,
21 formatRelative: formatRelative,
22 localize: localize,
23 match: match,
24 options: {
25 weekStartsOn: 1 /* Monday */,
26 firstWeekContainsDate: 4,
27 },
28};
29
30// Fallback for modularized imports:
31export default pl;