the-tip-top-backend/node_modules/date-fns/locale/ar-TN/_lib/formatRelative.js
2025-11-17 23:47:54 +01:00

11 lines
331 B
JavaScript

const formatRelativeLocale = {
lastWeek: "eeee 'إلي فات مع' p",
yesterday: "'البارح مع' p",
today: "'اليوم مع' p",
tomorrow: "'غدوة مع' p",
nextWeek: "eeee 'الجمعة الجاية مع' p 'نهار'",
other: "P",
};
export const formatRelative = (token) => formatRelativeLocale[token];