Files
klz-cables.com/.pnpm-store/v10/files/01/b1897209915393878414a825a98aa1a92fda8c2743315bb7569134d5949b21061972a3b72af73d247de9e151bf46e0f9bbfaa90ddd063bbefccf00b4afe9ee
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
762 B
Plaintext

import { formatDistance } from "./lb/_lib/formatDistance.js";
import { formatLong } from "./lb/_lib/formatLong.js";
import { formatRelative } from "./lb/_lib/formatRelative.js";
import { localize } from "./lb/_lib/localize.js";
import { match } from "./lb/_lib/match.js";
/**
* @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;