gd.js 757 B

12345678910111213141516171819202122232425262728
  1. import { formatDistance } from "./gd/_lib/formatDistance.js";
  2. import { formatLong } from "./gd/_lib/formatLong.js";
  3. import { formatRelative } from "./gd/_lib/formatRelative.js";
  4. import { localize } from "./gd/_lib/localize.js";
  5. import { match } from "./gd/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Scottish Gaelic.
  9. * @language Scottish Gaelic
  10. * @iso-639-2 gla
  11. * @author Lee Driscoll [@leedriscoll](https://github.com/leedriscoll)
  12. */
  13. export const gd = {
  14. code: "gd",
  15. formatDistance: formatDistance,
  16. formatLong: formatLong,
  17. formatRelative: formatRelative,
  18. localize: localize,
  19. match: match,
  20. options: {
  21. weekStartsOn: 0 /* Sunday */,
  22. firstWeekContainsDate: 1,
  23. },
  24. };
  25. // Fallback for modularized imports:
  26. export default gd;