Files
klz-cables.com/.pnpm-store/v10/files/e6/f468a2bab9f626aaff31c17e7279f5a6a86c504e6d0d4a7e8c1ce564edd753fa41912942ef3f3c0c65431963859cbe0397a1a738767c647c5f8c471e0adeeb
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
897 B
Plaintext

import { formatDistance } from "./it/_lib/formatDistance.mjs";
import { formatLong } from "./it/_lib/formatLong.mjs";
import { formatRelative } from "./it/_lib/formatRelative.mjs";
import { localize } from "./it/_lib/localize.mjs";
import { match } from "./it/_lib/match.mjs";
/**
* @category Locales
* @summary Italian locale.
* @language Italian
* @iso-639-2 ita
* @author Alberto Restifo [@albertorestifo](https://github.com/albertorestifo)
* @author Giovanni Polimeni [@giofilo](https://github.com/giofilo)
* @author Vincenzo Carrese [@vin-car](https://github.com/vin-car)
*/
export const it = {
code: "it",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default it;