ro.js 876 B

123456789101112131415161718192021222324252627282930
  1. import { formatDistance } from "./ro/_lib/formatDistance.js";
  2. import { formatLong } from "./ro/_lib/formatLong.js";
  3. import { formatRelative } from "./ro/_lib/formatRelative.js";
  4. import { localize } from "./ro/_lib/localize.js";
  5. import { match } from "./ro/_lib/match.js";
  6. /**
  7. * @category Locales
  8. * @summary Romanian locale.
  9. * @language Romanian
  10. * @iso-639-2 ron
  11. * @author Sergiu Munteanu [@jsergiu](https://github.com/jsergiu)
  12. * @author Adrian Ocneanu [@aocneanu](https://github.com/aocneanu)
  13. * @author Mihai Ocneanu [@gandesc](https://github.com/gandesc)
  14. */
  15. export const ro = {
  16. code: "ro",
  17. formatDistance: formatDistance,
  18. formatLong: formatLong,
  19. formatRelative: formatRelative,
  20. localize: localize,
  21. match: match,
  22. options: {
  23. weekStartsOn: 1 /* Monday */,
  24. firstWeekContainsDate: 1,
  25. },
  26. };
  27. // Fallback for modularized imports:
  28. export default ro;