Files
klz-cables.com/.pnpm-store/v10/files/e3/4f00e6cb07d54a298815543896d61633a9a97b8f55483a5c71a87d14b4d0c49db7e6124ee79b95ff0c4b84e9162ede938faaa8da0a7293d56e7dfdf73884e8
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
741 B
Plaintext

import { formatDistance } from "./sq/_lib/formatDistance.js";
import { formatLong } from "./sq/_lib/formatLong.js";
import { formatRelative } from "./sq/_lib/formatRelative.js";
import { localize } from "./sq/_lib/localize.js";
import { match } from "./sq/_lib/match.js";
/**
* @category Locales
* @summary Albanian locale.
* @language Shqip
* @iso-639-2 sqi
* @author Ardit Dine [@arditdine](https://github.com/arditdine)
*/
export const sq = {
code: "sq",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default sq;