Files
klz-cables.com/.pnpm-store/v10/files/53/41383a6df91100404b99048618ba0a9df007012721599b214297896e47d402dfdc37fda829ba94d51dfe5e33ac8227e140e6604ea2112e961d2bfb0f083df1
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 "./be/_lib/formatDistance.mjs";
import { formatLong } from "./be/_lib/formatLong.mjs";
import { formatRelative } from "./be/_lib/formatRelative.mjs";
import { localize } from "./be/_lib/localize.mjs";
import { match } from "./be/_lib/match.mjs";
/**
* @category Locales
* @summary Belarusian locale.
* @language Belarusian
* @iso-639-2 bel
* @author Kiryl Anokhin [@alyrik](https://github.com/alyrik)
* @author Martin Wind [@arvigeus](https://github.com/mawi12345)
*/
export const be = {
code: "be",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default be;