Files
klz-cables.com/.pnpm-store/v10/files/4d/ab72369b32fed8c613d1ccef138b96ef587b779614b8aee696681449bc8e9bea9252bb318633e1592a155e4f346836583c7be38de12ef948a4a16a6c6d68a7
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

31 lines
904 B
Plaintext

import { formatDistance } from "./nb/_lib/formatDistance.mjs";
import { formatLong } from "./nb/_lib/formatLong.mjs";
import { formatRelative } from "./nb/_lib/formatRelative.mjs";
import { localize } from "./nb/_lib/localize.mjs";
import { match } from "./nb/_lib/match.mjs";
/**
* @category Locales
* @summary Norwegian Bokmål locale.
* @language Norwegian Bokmål
* @iso-639-2 nob
* @author Hans-Kristian Koren [@Hanse](https://github.com/Hanse)
* @author Mikolaj Grzyb [@mikolajgrzyb](https://github.com/mikolajgrzyb)
* @author Dag Stuan [@dagstuan](https://github.com/dagstuan)
*/
export const nb = {
code: "nb",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default nb;