Rocky_Mountain_Vending/.pnpm-store/v10/files/2e/2c9275bdad29779260043c22c828eb3e941b77d087c9bb46d216210420750df00491b855cdb849066644f7a4546e4ce07d3af66f8d2abf74c906b56aa7c305
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

30 lines
899 B
Text

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;