Files
klz-cables.com/.pnpm-store/v10/files/e3/dd858d0e4f782923a8f93105b66251b1af01e4375a0963866543f4a206f8da7727b10dca4656b825c2c35d2e41ff3afe06fd839934db9adaf167d7a4db6182
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

29 lines
760 B
Plaintext

import { formatDistance } from "./it/_lib/formatDistance.js";
import { formatRelative } from "./it/_lib/formatRelative.js";
import { localize } from "./it/_lib/localize.js";
import { match } from "./it/_lib/match.js";
import { formatLong } from "./it-CH/_lib/formatLong.js";
/**
* @category Locales
* @summary Italian locale (Switzerland).
* @language Italian
* @iso-639-2 ita
* @author Mike Peyer [@maic66](https://github.com/maic66)
*/
export const itCH = {
code: "it-CH",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default itCH;