12 lines
333 B
JavaScript
12 lines
333 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];
|