Files
klz-cables.com/.pnpm-store/v10/files/3e/4465fc8669becc0469495a4479684c3583fe1ef5bbc2354a1a90730bc48be7cef5218f8b63fcbacfe1ab436cf3126f50953a6135682e37f9023cb8fe349e1d
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
815 B
Plaintext

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