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

12 lines
311 B
JavaScript
Raw Normal View History

2024-05-14 14:54:12 +00:00
const formatRelativeLocale = {
lastWeek: "'geçen hafta' eeee 'saat' p",
yesterday: "'dün saat' p",
today: "'bugün saat' p",
tomorrow: "'yarın saat' p",
nextWeek: "eeee 'saat' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];