Files
klz-cables.com/.pnpm-store/v10/files/73/fb766263334ef996d6f9ffa70c36e3a93cc67a1ce93e38d1fbfcbd43e18d488fcae19e2128ce137ed29deed83b01c715582a2f7fa52d213720e4b41b4a990d
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
761 B
Plaintext

import { formatDistance } from "./sr/_lib/formatDistance.mjs";
import { formatLong } from "./sr/_lib/formatLong.mjs";
import { formatRelative } from "./sr/_lib/formatRelative.mjs";
import { localize } from "./sr/_lib/localize.mjs";
import { match } from "./sr/_lib/match.mjs";
/**
* @category Locales
* @summary Serbian cyrillic locale.
* @language Serbian
* @iso-639-2 srp
* @author Igor Radivojević [@rogyvoje](https://github.com/rogyvoje)
*/
export const sr = {
code: "sr",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default sr;