timepiece/node_modules/date-fns/locale/ar-TN/_lib/formatRelative.mjs

11 lines
331 B
JavaScript
Raw Normal View History

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