index.js 803 B

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