Files
klz-cables.com/.pnpm-store/v10/files/35/64a32e7b570b9b57924be350a710fa1498548c3077d6344e52c131fb78d3b12defc51f648c6807b656c4a18a15ce021b084a8379ee7919faf2585daca35313
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 "./ca/_lib/formatDistance.mjs";
import { formatLong } from "./ca/_lib/formatLong.mjs";
import { formatRelative } from "./ca/_lib/formatRelative.mjs";
import { localize } from "./ca/_lib/localize.mjs";
import { match } from "./ca/_lib/match.mjs";
/**
* @category Locales
* @summary Catalan locale.
* @language Catalan
* @iso-639-2 cat
* @author Guillermo Grau [@guigrpa](https://github.com/guigrpa)
* @author Alex Vizcaino [@avizcaino](https://github.com/avizcaino)
*/
export const ca = {
code: "ca",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default ca;