main page
This commit is contained in:
125
node_modules/date-fns/locale/ar-TN/_lib/formatDistance/index.js
generated
vendored
Normal file
125
node_modules/date-fns/locale/ar-TN/_lib/formatDistance/index.js
generated
vendored
Normal file
@@ -0,0 +1,125 @@
|
||||
"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 usageGroup = formatDistanceLocale[token];
|
||||
var result;
|
||||
if (typeof usageGroup === 'string') {
|
||||
result = usageGroup;
|
||||
} else if (count === 1) {
|
||||
result = usageGroup.one;
|
||||
} else if (count === 2) {
|
||||
result = usageGroup.two;
|
||||
} else if (count <= 10) {
|
||||
result = usageGroup.threeToTen.replace('{{count}}', String(count));
|
||||
} else {
|
||||
result = usageGroup.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;
|
||||
Reference in New Issue
Block a user