timepiece/node_modules/date-fns/locale/fr/_lib/formatDistance.mjs

101 lines
1.7 KiB
JavaScript
Raw 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.

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",
},
};
export 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;
};