index.js 930 B

1234567891011121314151617181920212223242526272829303132
  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 French locale.
  10. * @language French
  11. * @iso-639-2 fra
  12. * @author Jean Dupouy [@izeau]{@link https://github.com/izeau}
  13. * @author François B [@fbonzon]{@link https://github.com/fbonzon}
  14. * @author Van Vuong Ngo [@vanvuongngo]{@link https://github.com/vanvuongngo}
  15. * @author Alex Hoeing [@dcbn]{@link https://github.com/dcbn}
  16. */
  17. var locale = {
  18. code: 'fr-CH',
  19. formatDistance: formatDistance,
  20. formatLong: formatLong,
  21. formatRelative: formatRelative,
  22. localize: localize,
  23. match: match,
  24. options: {
  25. weekStartsOn: 1
  26. /* Monday */
  27. ,
  28. firstWeekContainsDate: 4
  29. }
  30. };
  31. export default locale;