Rocky_Mountain_Vending/.pnpm-store/v10/files/c9/5aac59eb7304f9253c46586ace2d515d9072f529f2f6a53d193e9915622af8794fa32dcf763187724761e274b57699dc1ead58f95baf9db1088f5ca5a7bc7d
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

32 lines
1 KiB
Text

import { formatDistance } from "./zh-CN/_lib/formatDistance.js";
import { formatLong } from "./zh-CN/_lib/formatLong.js";
import { formatRelative } from "./zh-CN/_lib/formatRelative.js";
import { localize } from "./zh-CN/_lib/localize.js";
import { match } from "./zh-CN/_lib/match.js";
/**
* @category Locales
* @summary Chinese Simplified locale.
* @language Chinese Simplified
* @iso-639-2 zho
* @author Changyu Geng [@KingMario](https://github.com/KingMario)
* @author Song Shuoyun [@fnlctrl](https://github.com/fnlctrl)
* @author sabrinaM [@sabrinamiao](https://github.com/sabrinamiao)
* @author Carney Wu [@cubicwork](https://github.com/cubicwork)
* @author Terrence Lam [@skyuplam](https://github.com/skyuplam)
*/
export const zhCN = {
code: "zh-CN",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default zhCN;