Files
klz-cables.com/.pnpm-store/v10/files/97/2764386e377bc5c9df1b318c69e7bd5678531f5285b323c91118b66a17496b893ed1c37c5ccb2895c925142e9eb47352345750b81a51724bbe582a13b87105
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
813 B
Plaintext

import { formatDistance } from "./mk/_lib/formatDistance.js";
import { formatLong } from "./mk/_lib/formatLong.js";
import { formatRelative } from "./mk/_lib/formatRelative.js";
import { localize } from "./mk/_lib/localize.js";
import { match } from "./mk/_lib/match.js";
/**
* @category Locales
* @summary Macedonian locale.
* @language Macedonian
* @iso-639-2 mkd
* @author Petar Vlahu [@vlahupetar](https://github.com/vlahupetar)
* @author Altrim Beqiri [@altrim](https://github.com/altrim)
*/
export const mk = {
code: "mk",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default mk;