123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
- var formatDistanceLocale = {
- lessThanXSeconds: {
- one: 'أقل من ثانية واحدة',
- two: 'أقل من ثانتين',
- threeToTen: 'أقل من {{count}} ثواني',
- other: 'أقل من {{count}} ثانية'
- },
- xSeconds: {
- one: 'ثانية واحدة',
- two: 'ثانتين',
- threeToTen: '{{count}} ثواني',
- other: '{{count}} ثانية'
- },
- halfAMinute: 'نصف دقيقة',
- lessThanXMinutes: {
- one: 'أقل من دقيقة',
- two: 'أقل من دقيقتين',
- threeToTen: 'أقل من {{count}} دقائق',
- other: 'أقل من {{count}} دقيقة'
- },
- xMinutes: {
- one: 'دقيقة واحدة',
- two: 'دقيقتين',
- threeToTen: '{{count}} دقائق',
- other: '{{count}} دقيقة'
- },
- aboutXHours: {
- one: 'ساعة واحدة تقريباً',
- two: 'ساعتين تقريباً',
- threeToTen: '{{count}} ساعات تقريباً',
- other: '{{count}} ساعة تقريباً'
- },
- xHours: {
- one: 'ساعة واحدة',
- two: 'ساعتين',
- threeToTen: '{{count}} ساعات',
- other: '{{count}} ساعة'
- },
- xDays: {
- one: 'يوم واحد',
- two: 'يومين',
- threeToTen: '{{count}} أيام',
- other: '{{count}} يوم'
- },
- aboutXWeeks: {
- one: 'أسبوع واحد تقريباً',
- two: 'أسبوعين تقريباً',
- threeToTen: '{{count}} أسابيع تقريباً',
- other: '{{count}} أسبوع تقريباً'
- },
- xWeeks: {
- one: 'أسبوع واحد',
- two: 'أسبوعين',
- threeToTen: '{{count}} أسابيع',
- other: '{{count}} أسبوع'
- },
- aboutXMonths: {
- one: 'شهر واحد تقريباً',
- two: 'شهرين تقريباً',
- threeToTen: '{{count}} أشهر تقريباً',
- other: '{{count}} شهر تقريباً'
- },
- xMonths: {
- one: 'شهر واحد',
- two: 'شهرين',
- threeToTen: '{{count}} أشهر',
- other: '{{count}} شهر'
- },
- aboutXYears: {
- one: 'عام واحد تقريباً',
- two: 'عامين تقريباً',
- threeToTen: '{{count}} أعوام تقريباً',
- other: '{{count}} عام تقريباً'
- },
- xYears: {
- one: 'عام واحد',
- two: 'عامين',
- threeToTen: '{{count}} أعوام',
- other: '{{count}} عام'
- },
- overXYears: {
- one: 'أكثر من عام',
- two: 'أكثر من عامين',
- threeToTen: 'أكثر من {{count}} أعوام',
- other: 'أكثر من {{count}} عام'
- },
- almostXYears: {
- one: 'عام واحد تقريباً',
- two: 'عامين تقريباً',
- threeToTen: '{{count}} أعوام تقريباً',
- 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 if (count === 2) {
- result = tokenValue.two;
- } else if (count <= 10) {
- result = tokenValue.threeToTen.replace('{{count}}', String(count));
- } 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;
|