Files
klz-cables.com/.pnpm-store/v10/files/d6/efc8c15baadb5935b63effdcb0031b3d505b36daa382c49db40b12965ce79a6d94bb9c65cfb6f0f8bba2731ff7a56104b8c407ef815a2aefa7394903cee236
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
941 B
Plaintext

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