Files
klz-cables.com/.pnpm-store/v10/files/ee/0ac15cbcf77bd3e07bf4cc8150f5383ad5726eee2ff505b94cf7aaaab2d3a9ea56f4c5278de10503cb10250d1e93ebf508c63cd54d192e00126229255a9436
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
703 B
Plaintext

import { formatDistance } from "./oc/_lib/formatDistance.js";
import { formatLong } from "./oc/_lib/formatLong.js";
import { formatRelative } from "./oc/_lib/formatRelative.js";
import { localize } from "./oc/_lib/localize.js";
import { match } from "./oc/_lib/match.js";
/**
* @category Locales
* @summary Occitan locale.
* @language Occitan
* @iso-639-2 oci
* @author Quentin PAGÈS
*/
export const oc = {
code: "oc",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default oc;