Rocky_Mountain_Vending/.pnpm-store/v10/files/93/21c5dffd3b58fe5650509a0cb0549cb253dea008beccce7423d82e4903cb8d336092e71d117520ecf20a71f3a5fbbf1ecc46a38b58dea7cae3617302daab3a
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 "./es/_lib/formatDistance.js";
import { formatLong } from "./es/_lib/formatLong.js";
import { formatRelative } from "./es/_lib/formatRelative.js";
import { localize } from "./es/_lib/localize.js";
import { match } from "./es/_lib/match.js";
/**
* @category Locales
* @summary Spanish locale.
* @language Spanish
* @iso-639-2 spa
* @author Juan Angosto [@juanangosto](https://github.com/juanangosto)
* @author Guillermo Grau [@guigrpa](https://github.com/guigrpa)
* @author Fernando Agüero [@fjaguero](https://github.com/fjaguero)
* @author Gastón Haro [@harogaston](https://github.com/harogaston)
* @author Yago Carballo [@YagoCarballo](https://github.com/YagoCarballo)
*/
export const es = {
code: "es",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default es;