nl-BE.js 956 B

12345678910111213141516171819202122232425262728293031
  1. import { formatDistance } from "./nl-BE/_lib/formatDistance.js";
  2. import { formatLong } from "./nl-BE/_lib/formatLong.js";
  3. import { formatRelative } from "./nl-BE/_lib/formatRelative.js";
  4. import { localize } from "./nl-BE/_lib/localize.js";
  5. import { match } from "./nl-BE/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Dutch locale.
  9. * @language Dutch
  10. * @iso-639-2 nld
  11. * @author Jorik Tangelder [@jtangelder](https://github.com/jtangelder)
  12. * @author Ruben Stolk [@rubenstolk](https://github.com/rubenstolk)
  13. * @author Lode Vanhove [@bitcrumb](https://github.com/bitcrumb)
  14. * @author Alex Hoeing [@dcbn](https://github.com/dcbn)
  15. */
  16. export const nlBE = {
  17. code: "nl-BE",
  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 nlBE;