pl.js 941 B

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