Rocky_Mountain_Vending/.pnpm-store/v10/files/60/ef9a7010e795d0ee555990f67b86ace8ea9fc9963353d12892efe1673aa64fba03f6c19c11db745709369f9dd8a84817631b8448a25adadfa141090d970870
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

104 lines
1.8 KiB
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use strict";
exports.formatDistance = void 0;
const formatDistanceLocale = {
lessThanXSeconds: {
one: "moins dune seconde",
other: "moins de {{count}} secondes",
},
xSeconds: {
one: "1 seconde",
other: "{{count}} secondes",
},
halfAMinute: "30 secondes",
lessThanXMinutes: {
one: "moins dune minute",
other: "moins de {{count}} minutes",
},
xMinutes: {
one: "1 minute",
other: "{{count}} minutes",
},
aboutXHours: {
one: "environ 1 heure",
other: "environ {{count}} heures",
},
xHours: {
one: "1 heure",
other: "{{count}} heures",
},
xDays: {
one: "1 jour",
other: "{{count}} jours",
},
aboutXWeeks: {
one: "environ 1 semaine",
other: "environ {{count}} semaines",
},
xWeeks: {
one: "1 semaine",
other: "{{count}} semaines",
},
aboutXMonths: {
one: "environ 1 mois",
other: "environ {{count}} mois",
},
xMonths: {
one: "1 mois",
other: "{{count}} mois",
},
aboutXYears: {
one: "environ 1 an",
other: "environ {{count}} ans",
},
xYears: {
one: "1 an",
other: "{{count}} ans",
},
overXYears: {
one: "plus dun an",
other: "plus de {{count}} ans",
},
almostXYears: {
one: "presquun an",
other: "presque {{count}} ans",
},
};
const formatDistance = (token, count, options) => {
let result;
const form = formatDistanceLocale[token];
if (typeof form === "string") {
result = form;
} else if (count === 1) {
result = form.one;
} else {
result = form.other.replace("{{count}}", String(count));
}
if (options?.addSuffix) {
if (options.comparison && options.comparison > 0) {
return "dans " + result;
} else {
return "il y a " + result;
}
}
return result;
};
exports.formatDistance = formatDistance;