react-timeago
Version:
A simple Time-Ago component for ReactJs
51 lines (50 loc) • 1.43 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var hasIntl = typeof Intl !== 'undefined' && Intl.NumberFormat != null;
var strings = {
prefixAgo: null,
prefixFromNow: null,
suffixAgo: 'پیش',
suffixFromNow: 'از حال',
seconds: 'کمتر از یک دقیقه',
minute: 'حدود یک دقیقه',
minutes: function minutes(value) {
if (hasIntl) {
return new Intl.NumberFormat('fa').format(value) + ' دقیقه';
}
return '%d دقیقه';
},
hour: 'حدود یک ساعت',
hours: function hours(value) {
if (hasIntl) {
return 'حدود %d ساعت'.replace('%d', new Intl.NumberFormat('fa').format(value));
}
return 'حدود %d ساعت';
},
day: 'یک روز',
days: function days(value) {
if (hasIntl) {
return '%d روز'.replace('%d', new Intl.NumberFormat('fa').format(value));
}
return '%d روز';
},
month: 'حدود یک ماه',
months: function months(value) {
if (hasIntl) {
return '%d ماه'.replace('%d', new Intl.NumberFormat('fa').format(value));
}
return '%d ماه';
},
year: 'حدود یک سال',
years: function years(value) {
if (hasIntl) {
return '%d سال'.replace('%d', new Intl.NumberFormat('fa').format(value));
}
return '%d سال';
},
wordSeparator: ' '
};
var _default = exports["default"] = strings;
;