index.js 792 B

123456789101112131415161718192021222324252627
  1. import formatDistance from "../de/_lib/formatDistance/index.js";
  2. import formatLong from "../de/_lib/formatLong/index.js";
  3. import formatRelative from "../de/_lib/formatRelative/index.js";
  4. import match from "../de/_lib/match/index.js";
  5. // difference to 'de' locale
  6. import localize from "./_lib/localize/index.js";
  7. /**
  8. * @type {Locale}
  9. * @category Locales
  10. * @summary German locale (Austria).
  11. * @language German
  12. * @iso-639-2 deu
  13. * @author Christoph Tobias Stenglein [@cstenglein]{@link https://github.com/cstenglein}
  14. */
  15. var locale = {
  16. code: 'de-AT',
  17. formatDistance: formatDistance,
  18. formatLong: formatLong,
  19. formatRelative: formatRelative,
  20. localize: localize,
  21. match: match,
  22. options: {
  23. weekStartsOn: 1 /* Monday */,
  24. firstWeekContainsDate: 4
  25. }
  26. };
  27. export default locale;