volleyball-dev-frontend/node_modules/date-fns/locale/fa-IR/_lib/formatRelative.mjs
2025-06-02 16:42:16 +00:00

12 lines
319 B
JavaScript

const formatRelativeLocale = {
lastWeek: "eeee 'گذشته در' p",
yesterday: "'دیروز در' p",
today: "'امروز در' p",
tomorrow: "'فردا در' p",
nextWeek: "eeee 'در' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];