Files
klz-cables.com/.pnpm-store/v10/files/68/8302bd6288238e7a9689eb441d3c9d2e781bcfb7f4ee968049534913520efa4d9f9eb8ca59e7e50de03f43272e15442a60ae22301227e5c61c3f789cea71b4
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
767 B
Plaintext

import { formatDistance } from "./lb/_lib/formatDistance.mjs";
import { formatLong } from "./lb/_lib/formatLong.mjs";
import { formatRelative } from "./lb/_lib/formatRelative.mjs";
import { localize } from "./lb/_lib/localize.mjs";
import { match } from "./lb/_lib/match.mjs";
/**
* @category Locales
* @summary Luxembourgish locale.
* @language Luxembourgish
* @iso-639-2 ltz
* @author Daniel Waxweiler [@dwaxweiler](https://github.com/dwaxweiler)
*/
export const lb = {
code: "lb",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default lb;