index.js 945 B

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