Files
klz-cables.com/.pnpm-store/v10/files/89/118eb3a36fd7144af4daddba16bbf7bcc069a44266a95f3b21926876ebc6570ec29be1e407760e7bf19b8abd6a245dbaf6c3f2b35c9ceb1e45fb9f971e2b81
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

29 lines
750 B
Plaintext

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;