Files
klz-cables.com/.pnpm-store/v10/files/78/e826da0d1dde20db0fd16baf7774e72eb71a761c85e8294d846d8eba181f53c666cac846a7c2b10e89a9a295e684827c5d0a4817bbb0f098eddf0a1bf5890e
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
818 B
Plaintext

import { formatDistance } from "./bn/_lib/formatDistance.js";
import { formatLong } from "./bn/_lib/formatLong.js";
import { formatRelative } from "./bn/_lib/formatRelative.js";
import { localize } from "./bn/_lib/localize.js";
import { match } from "./bn/_lib/match.js";
/**
* @category Locales
* @summary Bengali locale.
* @language Bengali
* @iso-639-2 ben
* @author Touhidur Rahman [@touhidrahman](https://github.com/touhidrahman)
* @author Farhad Yasir [@nutboltu](https://github.com/nutboltu)
*/
export const bn = {
code: "bn",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 0 /* Sunday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default bn;