Files
klz-cables.com/.pnpm-store/v10/files/2c/701f66ae5573ee94cd9a656e6e6279c923d5e3e07576d84a09d2e8c188c7fb97b28070b668ce33bea8be98eeba9833943cfbfdbe9169fe1ccd856bf6f46d9a
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
815 B
Plaintext

import { formatDistance } from "./pt/_lib/formatDistance.mjs";
import { formatLong } from "./pt/_lib/formatLong.mjs";
import { formatRelative } from "./pt/_lib/formatRelative.mjs";
import { localize } from "./pt/_lib/localize.mjs";
import { match } from "./pt/_lib/match.mjs";
/**
* @category Locales
* @summary Portuguese locale.
* @language Portuguese
* @iso-639-2 por
* @author Dário Freire [@dfreire](https://github.com/dfreire)
* @author Adrián de la Rosa [@adrm](https://github.com/adrm)
*/
export const pt = {
code: "pt",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default pt;