Rocky_Mountain_Vending/.pnpm-store/v10/files/01/90fd170a97fd92276ff9026ca60fd7f6f5adcc3224cf2a4aaf964466c0bbb10db729e950a5d630464345d1621c047bd93802285a7643d4e95d0ddcc887241f
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
834 B
Text

import { formatDistance } from "./ht/_lib/formatDistance.js";
import { formatLong } from "./ht/_lib/formatLong.js";
import { formatRelative } from "./ht/_lib/formatRelative.js";
import { localize } from "./ht/_lib/localize.js";
import { match } from "./ht/_lib/match.js";
/**
* @category Locales
* @summary Haitian Creole locale.
* @language Haitian Creole
* @iso-639-2 hat
* @author Rubens Mariuzzo [@rmariuzzo](https://github.com/rmariuzzo)
* @author Watson Marcelain [@watsongm24](https://github.com/watsongm24)
*/
export const ht = {
code: "ht",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default ht;