Files
klz-cables.com/.pnpm-store/v10/files/8e/be131aeb9405e1f95f48921c0c26e89348804379e5bc47ed11b95a5cc9b00e1e1a1d882895df6cb663fbca5fb9c59c28a7000fa070c356563b47ff7324c019
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 "./be/_lib/formatDistance.js";
import { formatLong } from "./be/_lib/formatLong.js";
import { formatRelative } from "./be/_lib/formatRelative.js";
import { localize } from "./be/_lib/localize.js";
import { match } from "./be/_lib/match.js";
/**
* @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;