timepiece/node_modules/date-fns/locale/sq/_lib/formatRelative.js

16 lines
383 B
JavaScript
Raw Normal View History

2024-05-14 14:54:12 +00:00
"use strict";
exports.formatRelative = void 0;
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",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;