Files
klz-cables.com/.pnpm-store/v10/files/b0/28fdc707ad8d1d9465da30224f6596615013aff9ad50a4c2672a0f904d76a3a39d55174c8b2893ec433a2fc2a2fa73cb4f0d2307bd69608ee80c5ac01d778a
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

32 lines
956 B
Plaintext

import { formatDistance } from "./nl-BE/_lib/formatDistance.js";
import { formatLong } from "./nl-BE/_lib/formatLong.js";
import { formatRelative } from "./nl-BE/_lib/formatRelative.js";
import { localize } from "./nl-BE/_lib/localize.js";
import { match } from "./nl-BE/_lib/match.js";
/**
* @category Locales
* @summary Dutch locale.
* @language Dutch
* @iso-639-2 nld
* @author Jorik Tangelder [@jtangelder](https://github.com/jtangelder)
* @author Ruben Stolk [@rubenstolk](https://github.com/rubenstolk)
* @author Lode Vanhove [@bitcrumb](https://github.com/bitcrumb)
* @author Alex Hoeing [@dcbn](https://github.com/dcbn)
*/
export const nlBE = {
code: "nl-BE",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default nlBE;