Files
RentWeAppFront/node_modules/date-fns/locale/fr-CH/_lib/formatRelative.mjs

12 lines
336 B
JavaScript
Raw Normal View History

2025-11-14 11:39:33 +08:00
const formatRelativeLocale = {
lastWeek: "eeee 'la semaine dernière à' p",
yesterday: "'hier à' p",
today: "'aujourdhui à' p",
tomorrow: "'demain à' p'",
nextWeek: "eeee 'la semaine prochaine à' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];