Rocky_Mountain_Vending/.pnpm-store/v10/files/15/e62ff332e4162343e7515ab988c1a0e425e10734f1ebb267d6380826f2d77274ade94dc7eef426bd4be66fad366ba3298d8a2a5798352e53f8e3a626c00236
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

101 lines
1.7 KiB
Text

const formatDistanceLocale = {
lessThanXSeconds: {
one: "më pak se një sekondë",
other: "më pak se {{count}} sekonda",
},
xSeconds: {
one: "1 sekondë",
other: "{{count}} sekonda",
},
halfAMinute: "gjysëm minuti",
lessThanXMinutes: {
one: "më pak se një minute",
other: "më pak se {{count}} minuta",
},
xMinutes: {
one: "1 minutë",
other: "{{count}} minuta",
},
aboutXHours: {
one: "rreth 1 orë",
other: "rreth {{count}} orë",
},
xHours: {
one: "1 orë",
other: "{{count}} orë",
},
xDays: {
one: "1 ditë",
other: "{{count}} ditë",
},
aboutXWeeks: {
one: "rreth 1 javë",
other: "rreth {{count}} javë",
},
xWeeks: {
one: "1 javë",
other: "{{count}} javë",
},
aboutXMonths: {
one: "rreth 1 muaj",
other: "rreth {{count}} muaj",
},
xMonths: {
one: "1 muaj",
other: "{{count}} muaj",
},
aboutXYears: {
one: "rreth 1 vit",
other: "rreth {{count}} vite",
},
xYears: {
one: "1 vit",
other: "{{count}} vite",
},
overXYears: {
one: "mbi 1 vit",
other: "mbi {{count}} vite",
},
almostXYears: {
one: "pothuajse 1 vit",
other: "pothuajse {{count}} vite",
},
};
export const formatDistance = (token, count, options) => {
let result;
const tokenValue = formatDistanceLocale[token];
if (typeof tokenValue === "string") {
result = tokenValue;
} else if (count === 1) {
result = tokenValue.one;
} else {
result = tokenValue.other.replace("{{count}}", String(count));
}
if (options?.addSuffix) {
if (options.comparison && options.comparison > 0) {
return "në " + result;
} else {
return result + " më parë";
}
}
return result;
};