Files
klz-cables.com/.pnpm-store/v10/files/e4/a998947e1ebfc17a9b6129a910baacfec24b319681f3ab20fb2782560f623130ffdb42cd438e52089fdd1b37fc7067f8b756d8f0fd89143ebc020d7dc7015f
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

32 lines
942 B
Plaintext

import { formatDistance } from "./da/_lib/formatDistance.mjs";
import { formatLong } from "./da/_lib/formatLong.mjs";
import { formatRelative } from "./da/_lib/formatRelative.mjs";
import { localize } from "./da/_lib/localize.mjs";
import { match } from "./da/_lib/match.mjs";
/**
* @category Locales
* @summary Danish locale.
* @language Danish
* @iso-639-2 dan
* @author Mathias Wøbbe [@MathiasKandelborg](https://github.com/MathiasKandelborg)
* @author Anders B. Hansen [@Andersbiha](https://github.com/Andersbiha)
* @author [@kgram](https://github.com/kgram)
* @author [@stefanbugge](https://github.com/stefanbugge)
*/
export const da = {
code: "da",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default da;