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

36 lines
944 B
Plaintext

// Same as fr
import { formatDistance } from "./fr/_lib/formatDistance.js";
import { formatRelative } from "./fr/_lib/formatRelative.js";
import { localize } from "./fr/_lib/localize.js";
import { match } from "./fr/_lib/match.js";
// Unique for fr-CA
import { formatLong } from "./fr-CA/_lib/formatLong.js";
/**
* @category Locales
* @summary French locale (Canada).
* @language French
* @iso-639-2 fra
* @author Jean Dupouy [@izeau](https://github.com/izeau)
* @author François B [@fbonzon](https://github.com/fbonzon)
* @author Gabriele Petrioli [@gpetrioli](https://github.com/gpetrioli)
*/
export const frCA = {
code: "fr-CA",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
// Unique for fr-CA
options: {
weekStartsOn: 0 /* Sunday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default frCA;