Files
klz-cables.com/.pnpm-store/v10/files/8d/0dc6023b49fd419948589236c095eb12c27d539b42170cf8886effeb7f0ae27b1893a9b867f1e111006a78b37f8dc8925177c7e9c2d7f70fe821ea0ec816a2
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
877 B
Plaintext

import { formatDistance } from "./ar/_lib/formatDistance.mjs";
import { formatLong } from "./ar/_lib/formatLong.mjs";
import { formatRelative } from "./ar/_lib/formatRelative.mjs";
import { localize } from "./ar/_lib/localize.mjs";
import { match } from "./ar/_lib/match.mjs";
/**
* @category Locales
* @summary Arabic locale (Modern Standard Arabic - Al-fussha).
* @language Modern Standard Arabic
* @iso-639-2 ara
* @author Abdallah Hassan [@AbdallahAHO](https://github.com/AbdallahAHO)
* @author Koussay Haj Kacem [@essana3](https://github.com/essana3)
*/
export const ar = {
code: "ar",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 6 /* Saturday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default ar;