Files
klz-cables.com/.pnpm-store/v10/files/c5/9b2a0753ca491bdad298650dfb11e7d8d6d260823668be521857bd0ef3b62abbadbfe89f3d8f9629c2775213530934189f7c565464a8132e250ebdf2f6fa71
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

30 lines
820 B
Plaintext

import { formatDistance } from "./sl/_lib/formatDistance.mjs";
import { formatLong } from "./sl/_lib/formatLong.mjs";
import { formatRelative } from "./sl/_lib/formatRelative.mjs";
import { localize } from "./sl/_lib/localize.mjs";
import { match } from "./sl/_lib/match.mjs";
/**
* @category Locales
* @summary Slovenian locale.
* @language Slovenian
* @iso-639-2 slv
* @author Adam Stradovnik [@Neoglyph](https://github.com/Neoglyph)
* @author Mato Žgajner [@mzgajner](https://github.com/mzgajner)
*/
export const sl = {
code: "sl",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default sl;