Files
klz-cables.com/.pnpm-store/v10/files/91/7fb54f519db64ffcc2b5c357037f5e80530631549aca88d7fa83d402b6044ba1efe6df8b3443d412156486ddc3e088368d019366cc8bf87164de0ad3ecd813
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
755 B
Plaintext

import { formatDistance } from "./et/_lib/formatDistance.mjs";
import { formatLong } from "./et/_lib/formatLong.mjs";
import { formatRelative } from "./et/_lib/formatRelative.mjs";
import { localize } from "./et/_lib/localize.mjs";
import { match } from "./et/_lib/match.mjs";
/**
* @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;