Files
klz-cables.com/.pnpm-store/v10/files/2a/7519c4b02e1da249c69de961c8a83c517fff2de37845fdc717b586e5a30064414850fe1295c7acf0b3d66fce9f8503b04f608f0c330009ee7b32988c5e735f
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
771 B
Plaintext

import { formatDistance } from "./nn/_lib/formatDistance.js";
import { formatLong } from "./nn/_lib/formatLong.js";
import { formatRelative } from "./nn/_lib/formatRelative.js";
import { localize } from "./nn/_lib/localize.js";
import { match } from "./nn/_lib/match.js";
/**
* @category Locales
* @summary Norwegian Nynorsk locale.
* @language Norwegian Nynorsk
* @iso-639-2 nno
* @author Mats Byrkjeland [@draperunner](https://github.com/draperunner)
*/
export const nn = {
code: "nn",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default nn;