da.js 937 B

12345678910111213141516171819202122232425262728293031
  1. import { formatDistance } from "./da/_lib/formatDistance.js";
  2. import { formatLong } from "./da/_lib/formatLong.js";
  3. import { formatRelative } from "./da/_lib/formatRelative.js";
  4. import { localize } from "./da/_lib/localize.js";
  5. import { match } from "./da/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Danish locale.
  9. * @language Danish
  10. * @iso-639-2 dan
  11. * @author Mathias Wøbbe [@MathiasKandelborg](https://github.com/MathiasKandelborg)
  12. * @author Anders B. Hansen [@Andersbiha](https://github.com/Andersbiha)
  13. * @author [@kgram](https://github.com/kgram)
  14. * @author [@stefanbugge](https://github.com/stefanbugge)
  15. */
  16. export const da = {
  17. code: "da",
  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 da;