index.js 816 B

123456789101112131415161718192021222324252627282930313233
  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. *
  10. * @summary Lithuanian locale.
  11. * @language Lithuanian
  12. *
  13. * @iso-639-2 lit
  14. *
  15. * @author Pavlo Shpak [@pshpak]{@link https://github.com/pshpak}
  16. * @author Eduardo Pardo [@eduardopsll]{@link https://github.com/eduardopsll}
  17. */
  18. var locale = {
  19. code: 'lt',
  20. formatDistance: formatDistance,
  21. formatLong: formatLong,
  22. formatRelative: formatRelative,
  23. localize: localize,
  24. match: match,
  25. options: {
  26. weekStartsOn: 1
  27. /* Monday */
  28. ,
  29. firstWeekContainsDate: 4
  30. }
  31. };
  32. export default locale;