init
This commit is contained in:
138
node_modules/date-fns/locale/ar-TN/_lib/formatDistance.js
generated
vendored
Normal file
138
node_modules/date-fns/locale/ar-TN/_lib/formatDistance.js
generated
vendored
Normal file
@@ -0,0 +1,138 @@
|
||||
"use strict";
|
||||
exports.formatDistance = void 0;
|
||||
|
||||
const 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}} عام تقريب",
|
||||
},
|
||||
};
|
||||
|
||||
const formatDistance = (token, count, options) => {
|
||||
const usageGroup = formatDistanceLocale[token];
|
||||
let 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?.addSuffix) {
|
||||
if (options.comparison && options.comparison > 0) {
|
||||
return "في " + result;
|
||||
} else {
|
||||
return "عندو " + result;
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
};
|
||||
exports.formatDistance = formatDistance;
|
||||
Reference in New Issue
Block a user