timepiece/node_modules/date-fns/locale/et/_lib/formatRelative.mjs

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];