el.js 807 B

1234567891011121314151617181920212223242526272829
  1. import { formatDistance } from "./el/_lib/formatDistance.js";
  2. import { formatLong } from "./el/_lib/formatLong.js";
  3. import { formatRelative } from "./el/_lib/formatRelative.js";
  4. import { localize } from "./el/_lib/localize.js";
  5. import { match } from "./el/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Greek locale.
  9. * @language Greek
  10. * @iso-639-2 ell
  11. * @author Fanis Katsimpas [@fanixk](https://github.com/fanixk)
  12. * @author Theodoros Orfanidis [@teoulas](https://github.com/teoulas)
  13. */
  14. export const el = {
  15. code: "el",
  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. // Fallback for modularized imports:
  27. export default el;