index.js 745 B

1234567891011121314151617181920212223242526
  1. import formatDistance from "../it/_lib/formatDistance/index.js";
  2. import formatRelative from "../it/_lib/formatRelative/index.js";
  3. import localize from "../it/_lib/localize/index.js";
  4. import match from "../it/_lib/match/index.js";
  5. import formatLong from "./_lib/formatLong/index.js";
  6. /**
  7. * @type {Locale}
  8. * @category Locales
  9. * @summary Italian locale (Switzerland).
  10. * @language Italian
  11. * @iso-639-2 ita
  12. * @author Mike Peyer [@maic66]{@link https://github.com/maic66}
  13. */
  14. var locale = {
  15. code: 'it-CH',
  16. formatDistance: formatDistance,
  17. formatLong: formatLong,
  18. formatRelative: formatRelative,
  19. localize: localize,
  20. match: match,
  21. options: {
  22. weekStartsOn: 1 /* Monday */,
  23. firstWeekContainsDate: 4
  24. }
  25. };
  26. export default locale;