Files
2025-11-14 11:39:33 +08:00

12 lines
316 B
JavaScript

const formatRelativeLocale = {
lastWeek: "'eelmine' eeee 'kell' p",
yesterday: "'eile kell' p",
today: "'täna kell' p",
tomorrow: "'homme kell' p",
nextWeek: "'järgmine' eeee 'kell' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];