12 lines
301 B
JavaScript
12 lines
301 B
JavaScript
|
const formatRelativeLocale = {
|
||
|
lastWeek: "'të' eeee 'e shkuar në' p",
|
||
|
yesterday: "'dje në' p",
|
||
|
today: "'sot në' p",
|
||
|
tomorrow: "'nesër në' p",
|
||
|
nextWeek: "eeee 'at' p",
|
||
|
other: "P",
|
||
|
};
|
||
|
|
||
|
export const formatRelative = (token, _date, _baseDate, _options) =>
|
||
|
formatRelativeLocale[token];
|