Files
klz-cables.com/.pnpm-store/v10/files/72/96032ab2474074be5b7f9bef2fb64b60fe84a721fda5c972af6b25f130581c04da0e6ec77d57eebf5d5a393e80361d8ed4cd46a6938fb47e2bf072bef1382e
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 "./ar-TN/_lib/formatDistance.js";
import { formatLong } from "./ar-TN/_lib/formatLong.js";
import { formatRelative } from "./ar-TN/_lib/formatRelative.js";
import { localize } from "./ar-TN/_lib/localize.js";
import { match } from "./ar-TN/_lib/match.js";
/**
* @category Locales
* @summary Arabic locale (Tunisian Arabic).
* @language Arabic
* @iso-639-2 ara
* @author Koussay Haj Kacem [@essana3](https://github.com/essana3)
*/
export const arTN = {
code: "ar-TN",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default arTN;