UNPKG

876 BJavaScriptView Raw
1import { formatDistance } from "./ro/_lib/formatDistance.js";
2import { formatLong } from "./ro/_lib/formatLong.js";
3import { formatRelative } from "./ro/_lib/formatRelative.js";
4import { localize } from "./ro/_lib/localize.js";
5import { match } from "./ro/_lib/match.js";
6
7/**
8 * @category Locales
9 * @summary Romanian locale.
10 * @language Romanian
11 * @iso-639-2 ron
12 * @author Sergiu Munteanu [@jsergiu](https://github.com/jsergiu)
13 * @author Adrian Ocneanu [@aocneanu](https://github.com/aocneanu)
14 * @author Mihai Ocneanu [@gandesc](https://github.com/gandesc)
15 */
16export const ro = {
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
29// Fallback for modularized imports:
30export default ro;