Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/local/lib/node_modules/wonlog/node_modules/date-fns/esm/locale/ar-MA/_lib/formatDistance/ drwxr-xr-x | |
| Viewing file: Select action/file-type: 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}} عام تقريباً'
}
};
export default function formatDistance(token, count, options) {
options = options || {};
var result;
if (typeof formatDistanceLocale[token] === 'string') {
result = formatDistanceLocale[token];
} else if (count === 1) {
result = formatDistanceLocale[token].one;
} else if (count === 2) {
result = formatDistanceLocale[token].two;
} else if (count <= 10) {
result = formatDistanceLocale[token].threeToTen.replace('{{count}}', count);
} else {
result = formatDistanceLocale[token].other.replace('{{count}}', count);
}
if (options.addSuffix) {
if (options.comparison > 0) {
return 'في خلال ' + result;
} else {
return 'منذ ' + result;
}
}
return result;
} |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0057 ]-- |