1234567891011121314151617181920212223242526272829 |
- import { formatDistance } from "./ru/_lib/formatDistance.js";
- import { formatLong } from "./ru/_lib/formatLong.js";
- import { formatRelative } from "./ru/_lib/formatRelative.js";
- import { localize } from "./ru/_lib/localize.js";
- import { match } from "./ru/_lib/match.js";
- /**
- * @category Locales
- * @summary Russian locale.
- * @language Russian
- * @iso-639-2 rus
- * @author Sasha Koss [@kossnocorp](https://github.com/kossnocorp)
- * @author Lesha Koss [@leshakoss](https://github.com/leshakoss)
- */
- export const ru = {
- code: "ru",
- formatDistance: formatDistance,
- formatLong: formatLong,
- formatRelative: formatRelative,
- localize: localize,
- match: match,
- options: {
- weekStartsOn: 1 /* Monday */,
- firstWeekContainsDate: 1,
- },
- };
- // Fallback for modularized imports:
- export default ru;
|