de.js 985 B

1234567891011121314151617181920212223242526272829303132
  1. import { formatDistance } from "./de/_lib/formatDistance.js";
  2. import { formatLong } from "./de/_lib/formatLong.js";
  3. import { formatRelative } from "./de/_lib/formatRelative.js";
  4. import { localize } from "./de/_lib/localize.js";
  5. import { match } from "./de/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary German locale.
  9. * @language German
  10. * @iso-639-2 deu
  11. * @author Thomas Eilmsteiner [@DeMuu](https://github.com/DeMuu)
  12. * @author Asia [@asia-t](https://github.com/asia-t)
  13. * @author Van Vuong Ngo [@vanvuongngo](https://github.com/vanvuongngo)
  14. * @author RomanErnst [@pex](https://github.com/pex)
  15. * @author Philipp Keck [@Philipp91](https://github.com/Philipp91)
  16. */
  17. export const de = {
  18. code: "de",
  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. // Fallback for modularized imports:
  30. export default de;