12345678910111213141516171819202122232425262728 |
- import { formatDistance } from "./et/_lib/formatDistance.js";
- import { formatLong } from "./et/_lib/formatLong.js";
- import { formatRelative } from "./et/_lib/formatRelative.js";
- import { localize } from "./et/_lib/localize.js";
- import { match } from "./et/_lib/match.js";
- /**
- * @category Locales
- * @summary Estonian locale.
- * @language Estonian
- * @iso-639-2 est
- * @author Priit Hansen [@HansenPriit](https://github.com/priithansen)
- */
- export const et = {
- code: "et",
- formatDistance: formatDistance,
- formatLong: formatLong,
- formatRelative: formatRelative,
- localize: localize,
- match: match,
- options: {
- weekStartsOn: 1 /* Monday */,
- firstWeekContainsDate: 4,
- },
- };
- // Fallback for modularized imports:
- export default et;
|