Files
klz-cables.com/.pnpm-store/v10/files/2e/2c9275bdad29779260043c22c828eb3e941b77d087c9bb46d216210420750df00491b855cdb849066644f7a4546e4ce07d3af66f8d2abf74c906b56aa7c305
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
899 B
Plaintext

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