Files
RentWeAppFront/node_modules/date-fns/locale/vi/_lib/formatRelative.mjs

12 lines
352 B
JavaScript
Raw Normal View History

2025-11-14 11:39:33 +08:00
const formatRelativeLocale = {
lastWeek: "eeee 'tuần trước vào lúc' p",
yesterday: "'hôm qua vào lúc' p",
today: "'hôm nay vào lúc' p",
tomorrow: "'ngày mai vào lúc' p",
nextWeek: "eeee 'tới vào lúc' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];