Files
klz-cables.com/.pnpm-store/v10/files/5a/6ce18c2f06a1879e73b9970c03f60d1f46ef1d2effb3aedad60af8db86f20fc6595ea645e955b4abe813451430a48d3a166c45e8ed6e9b0c55c28b02ae422a
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
866 B
Plaintext

import { formatDistance } from "./cs/_lib/formatDistance.js";
import { formatLong } from "./cs/_lib/formatLong.js";
import { formatRelative } from "./cs/_lib/formatRelative.js";
import { localize } from "./cs/_lib/localize.js";
import { match } from "./cs/_lib/match.js";
/**
* @category Locales
* @summary Czech locale.
* @language Czech
* @iso-639-2 ces
* @author David Rus [@davidrus](https://github.com/davidrus)
* @author Pavel Hrách [@SilenY](https://github.com/SilenY)
* @author Jozef Bíroš [@JozefBiros](https://github.com/JozefBiros)
*/
export const cs = {
code: "cs",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default cs;