Files
klz-cables.com/.pnpm-store/v10/files/a9/9962dff3f0343d1790506356b9ac7cbb74cb42a0bb2f63b2b2b930bc4746c77756f9f3b0100d0225f19f898ef33bd9c09e495bc5da486907bd164116805922
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

31 lines
881 B
Plaintext

import { formatDistance } from "./fi/_lib/formatDistance.mjs";
import { formatLong } from "./fi/_lib/formatLong.mjs";
import { formatRelative } from "./fi/_lib/formatRelative.mjs";
import { localize } from "./fi/_lib/localize.mjs";
import { match } from "./fi/_lib/match.mjs";
/**
* @category Locales
* @summary Finnish locale.
* @language Finnish
* @iso-639-2 fin
* @author Pyry-Samuli Lahti [@Pyppe](https://github.com/Pyppe)
* @author Edo Rivai [@mikolajgrzyb](https://github.com/mikolajgrzyb)
* @author Samu Juvonen [@sjuvonen](https://github.com/sjuvonen)
*/
export const fi = {
code: "fi",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default fi;