Files
klz-cables.com/.pnpm-store/v10/files/38/bc9bcda98fd56f778fa0542f2afdb76ef4511da3873913b3515efbcbf60871f27461faab9a35e637eee045a3d724f818943de0ad9df3e10a575cf1eb0019ba
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

29 lines
817 B
Plaintext

import { formatDistance } from "./be-tarask/_lib/formatDistance.js";
import { formatLong } from "./be-tarask/_lib/formatLong.js";
import { formatRelative } from "./be-tarask/_lib/formatRelative.js";
import { localize } from "./be-tarask/_lib/localize.js";
import { match } from "./be-tarask/_lib/match.js";
/**
* @category Locales
* @summary Belarusian Classic locale.
* @language Belarusian Classic
* @iso-639-2 bel
* @author Ryhor Nopears [@nopears](https://github.com/nopears)
*/
export const beTarask = {
code: "be-tarask",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default beTarask;