Files
klz-cables.com/.pnpm-store/v10/files/70/00db26131446b91ae0b779bbefcc3a71a07b68f12f4d3268f796f9702775fd7802066e7be97d50de4a88243e1ed5da721ddc9d7c9f7732b012c738f507c3e2
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

32 lines
946 B
Plaintext

import { formatDistance } from "./pl/_lib/formatDistance.mjs";
import { formatLong } from "./pl/_lib/formatLong.mjs";
import { formatRelative } from "./pl/_lib/formatRelative.mjs";
import { localize } from "./pl/_lib/localize.mjs";
import { match } from "./pl/_lib/match.mjs";
/**
* @category Locales
* @summary Polish locale.
* @language Polish
* @iso-639-2 pol
* @author Mateusz Derks [@ertrzyiks](https://github.com/ertrzyiks)
* @author Just RAG [@justrag](https://github.com/justrag)
* @author Mikolaj Grzyb [@mikolajgrzyb](https://github.com/mikolajgrzyb)
* @author Mateusz Tokarski [@mutisz](https://github.com/mutisz)
*/
export const pl = {
code: "pl",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default pl;