index.js 864 B

12345678910111213141516171819202122232425262728
  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. * @summary Romanian locale.
  10. * @language Romanian
  11. * @iso-639-2 ron
  12. * @author Sergiu Munteanu [@jsergiu]{@link https://github.com/jsergiu}
  13. * @author Adrian Ocneanu [@aocneanu]{@link https://github.com/aocneanu}
  14. * @author Mihai Ocneanu [@gandesc]{@link https://github.com/gandesc}
  15. */
  16. var locale = {
  17. code: 'ro',
  18. formatDistance: formatDistance,
  19. formatLong: formatLong,
  20. formatRelative: formatRelative,
  21. localize: localize,
  22. match: match,
  23. options: {
  24. weekStartsOn: 1 /* Monday */,
  25. firstWeekContainsDate: 1
  26. }
  27. };
  28. export default locale;