lt.js 815 B

1234567891011121314151617181920212223242526272829
  1. import { formatDistance } from "./lt/_lib/formatDistance.js";
  2. import { formatLong } from "./lt/_lib/formatLong.js";
  3. import { formatRelative } from "./lt/_lib/formatRelative.js";
  4. import { localize } from "./lt/_lib/localize.js";
  5. import { match } from "./lt/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Lithuanian locale.
  9. * @language Lithuanian
  10. * @iso-639-2 lit
  11. * @author Pavlo Shpak [@pshpak](https://github.com/pshpak)
  12. * @author Eduardo Pardo [@eduardopsll](https://github.com/eduardopsll)
  13. */
  14. export const lt = {
  15. code: "lt",
  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 lt;