index.js 995 B

123456789101112131415161718192021222324252627282930313233
  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 German locale.
  10. * @language German
  11. * @iso-639-2 deu
  12. * @author Thomas Eilmsteiner [@DeMuu]{@link https://github.com/DeMuu}
  13. * @author Asia [@asia-t]{@link https://github.com/asia-t}
  14. * @author Van Vuong Ngo [@vanvuongngo]{@link https://github.com/vanvuongngo}
  15. * @author RomanErnst [@pex]{@link https://github.com/pex}
  16. * @author Philipp Keck [@Philipp91]{@link https://github.com/Philipp91}
  17. */
  18. var locale = {
  19. code: 'de',
  20. formatDistance: formatDistance,
  21. formatLong: formatLong,
  22. formatRelative: formatRelative,
  23. localize: localize,
  24. match: match,
  25. options: {
  26. weekStartsOn: 1
  27. /* Monday */
  28. ,
  29. firstWeekContainsDate: 4
  30. }
  31. };
  32. export default locale;