Rocky_Mountain_Vending/.pnpm-store/v10/files/54/abc9b9003b3362d834e75ebac6345cdd1b8fe6ed9387c4ee93af9bcd817d7ae85a4076745b8d24f21706bc1a7c7706a2141a1a6e569f5758dfc73ab284c4c7
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,008 B
Text

import { formatDistance } from "./ja/_lib/formatDistance.js";
import { formatLong } from "./ja/_lib/formatLong.js";
import { formatRelative } from "./ja/_lib/formatRelative.js";
import { localize } from "./ja/_lib/localize.js";
import { match } from "./ja/_lib/match.js";
/**
* @category Locales
* @summary Japanese locale.
* @language Japanese
* @iso-639-2 jpn
* @author Thomas Eilmsteiner [@DeMuu](https://github.com/DeMuu)
* @author Yamagishi Kazutoshi [@ykzts](https://github.com/ykzts)
* @author Luca Ban [@mesqueeb](https://github.com/mesqueeb)
* @author Terrence Lam [@skyuplam](https://github.com/skyuplam)
* @author Taiki IKeda [@so99ynoodles](https://github.com/so99ynoodles)
*/
export const ja = {
code: "ja",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 0 /* Sunday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default ja;