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

16 lines
474 B
JavaScript
Raw Normal View History

2024-05-14 14:54:12 +00:00
"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "'هەفتەی ڕابردوو' eeee 'کاتژمێر' p",
yesterday: "'دوێنێ کاتژمێر' p",
today: "'ئەمڕۆ کاتژمێر' p",
tomorrow: "'بەیانی کاتژمێر' p",
nextWeek: "eeee 'کاتژمێر' p",
other: "P",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;