fr-CH.js 985 B

12345678910111213141516171819202122232425262728293031323334
  1. // Same as fr
  2. import { formatDistance } from "./fr/_lib/formatDistance.js";
  3. import { localize } from "./fr/_lib/localize.js";
  4. import { match } from "./fr/_lib/match.js";
  5. // Unique for fr-CH
  6. import { formatLong } from "./fr-CH/_lib/formatLong.js";
  7. import { formatRelative } from "./fr-CH/_lib/formatRelative.js";
  8. /**
  9. * @category Locales
  10. * @summary French locale (Switzerland).
  11. * @language French
  12. * @iso-639-2 fra
  13. * @author Jean Dupouy [@izeau](https://github.com/izeau)
  14. * @author François B [@fbonzon](https://github.com/fbonzon)
  15. * @author Van Vuong Ngo [@vanvuongngo](https://github.com/vanvuongngo)
  16. * @author Alex Hoeing [@dcbn](https://github.com/dcbn)
  17. */
  18. export const frCH = {
  19. code: "fr-CH",
  20. formatDistance: formatDistance,
  21. formatLong: formatLong,
  22. formatRelative: formatRelative,
  23. localize: localize,
  24. match: match,
  25. options: {
  26. weekStartsOn: 1 /* Monday */,
  27. firstWeekContainsDate: 4,
  28. },
  29. };
  30. // Fallback for modularized imports:
  31. export default frCH;