Files
klz-cables.com/.pnpm-store/v10/files/8b/ec66ef9e4ce9350f63f62714f2c267435190b4e24e00d8b622a89918222e5fde5a8e45541ca296f05eed7bbf6818cc0c72f08da9c1796eb200e0b97e30f96f
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
810 B
Plaintext

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