135 lines
3.1 KiB
JavaScript
135 lines
3.1 KiB
JavaScript
|
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}} عام تقريب",
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export 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;
|
||
|
};
|