Files
klz-cables.com/.pnpm-store/v10/files/75/4c7701b3b23629055c53ceb69c7f0f786bc83d8c6d52f8a469790f61d2585e1ae708dd95757a3b92666a06971d3c7b7f7c6b53f7fb4b4a7e637770b7a42ead
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
876 B
Plaintext

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