Files
klz-cables.com/.pnpm-store/v10/files/b6/7d06d1db08ff8beddd7cadcf6454da402d804f84f90021cc578bf297c99d7f9882a1c1000d0d20188f788a6cbacde9ac1d2add4e8e1b33e529663db84d87a5
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
823 B
Plaintext

import { formatDistance } from "./bn/_lib/formatDistance.mjs";
import { formatLong } from "./bn/_lib/formatLong.mjs";
import { formatRelative } from "./bn/_lib/formatRelative.mjs";
import { localize } from "./bn/_lib/localize.mjs";
import { match } from "./bn/_lib/match.mjs";
/**
* @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;