Files
klz-cables.com/.pnpm-store/v10/files/2f/ae15687c29cdd1ce400f8e017b90484ddb6631c20e0f1a715ab061050ebad9e3dfb4f0eb4730fe7c87ea888a7433923d6684c045d3ef1bd5af03b41977419e
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
783 B
Plaintext

import { formatDistance } from "./fa-IR/_lib/formatDistance.mjs";
import { formatLong } from "./fa-IR/_lib/formatLong.mjs";
import { formatRelative } from "./fa-IR/_lib/formatRelative.mjs";
import { localize } from "./fa-IR/_lib/localize.mjs";
import { match } from "./fa-IR/_lib/match.mjs";
/**
* @category Locales
* @summary Persian/Farsi locale (Iran).
* @language Persian
* @iso-639-2 ira
* @author Morteza Ziyae [@mort3za](https://github.com/mort3za)
*/
export const faIR = {
code: "fa-IR",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 6 /* Saturday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default faIR;