Rocky_Mountain_Vending/.pnpm-store/v10/files/3e/4465fc8669becc0469495a4479684c3583fe1ef5bbc2354a1a90730bc48be7cef5218f8b63fcbacfe1ab436cf3126f50953a6135682e37f9023cb8fe349e1d
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

29 lines
815 B
Text

import { formatDistance } from "./sl/_lib/formatDistance.js";
import { formatLong } from "./sl/_lib/formatLong.js";
import { formatRelative } from "./sl/_lib/formatRelative.js";
import { localize } from "./sl/_lib/localize.js";
import { match } from "./sl/_lib/match.js";
/**
* @category Locales
* @summary Slovenian locale.
* @language Slovenian
* @iso-639-2 slv
* @author Adam Stradovnik [@Neoglyph](https://github.com/Neoglyph)
* @author Mato Žgajner [@mzgajner](https://github.com/mzgajner)
*/
export const sl = {
code: "sl",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default sl;