database-petani-mobile/node_modules/date-fns/locale/fa-IR/_lib/formatRelative.mjs
2026-02-23 16:39:35 +07: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];