date-fns
Version:
Modern JavaScript date utility library
91 lines (90 loc) • 2.22 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var formatDistanceLocale = {
lessThanXSeconds: {
one: '1 сониядан кам',
other: '{{count}} сониядан кам'
},
xSeconds: {
one: '1 сония',
other: '{{count}} сония'
},
halfAMinute: 'ярим дақиқа',
lessThanXMinutes: {
one: '1 дақиқадан кам',
other: '{{count}} дақиқадан кам'
},
xMinutes: {
one: '1 дақиқа',
other: '{{count}} дақиқа'
},
aboutXHours: {
one: 'тахминан 1 соат',
other: 'тахминан {{count}} соат'
},
xHours: {
one: '1 соат',
other: '{{count}} соат'
},
xDays: {
one: '1 кун',
other: '{{count}} кун'
},
aboutXWeeks: {
one: 'тахминан 1 хафта',
other: 'тахминан {{count}} хафта'
},
xWeeks: {
one: '1 хафта',
other: '{{count}} хафта'
},
aboutXMonths: {
one: 'тахминан 1 ой',
other: 'тахминан {{count}} ой'
},
xMonths: {
one: '1 ой',
other: '{{count}} ой'
},
aboutXYears: {
one: 'тахминан 1 йил',
other: 'тахминан {{count}} йил'
},
xYears: {
one: '1 йил',
other: '{{count}} йил'
},
overXYears: {
one: '1 йилдан кўп',
other: '{{count}} йилдан кўп'
},
almostXYears: {
one: 'деярли 1 йил',
other: 'деярли {{count}} йил'
}
};
var formatDistance = function formatDistance(token, count, options) {
var result;
var tokenValue = formatDistanceLocale[token];
if (typeof tokenValue === 'string') {
result = tokenValue;
} else if (count === 1) {
result = tokenValue.one;
} else {
result = tokenValue.other.replace('{{count}}', String(count));
}
if (options !== null && options !== void 0 && options.addSuffix) {
if (options.comparison && options.comparison > 0) {
return result + 'дан кейин';
} else {
return result + ' олдин';
}
}
return result;
};
var _default = formatDistance;
exports.default = _default;
module.exports = exports.default;
;