index.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. var formatDistanceLocale = {
  7. lessThanXSeconds: {
  8. one: 'أقل من ثانية',
  9. two: 'أقل من ثانيتين',
  10. threeToTen: 'أقل من {{count}} ثواني',
  11. other: 'أقل من {{count}} ثانية'
  12. },
  13. xSeconds: {
  14. one: 'ثانية',
  15. two: 'ثانيتين',
  16. threeToTen: '{{count}} ثواني',
  17. other: '{{count}} ثانية'
  18. },
  19. halfAMinute: 'نص دقيقة',
  20. lessThanXMinutes: {
  21. one: 'أقل من دقيقة',
  22. two: 'أقل من دقيقتين',
  23. threeToTen: 'أقل من {{count}} دقايق',
  24. other: 'أقل من {{count}} دقيقة'
  25. },
  26. xMinutes: {
  27. one: 'دقيقة',
  28. two: 'دقيقتين',
  29. threeToTen: '{{count}} دقايق',
  30. other: '{{count}} دقيقة'
  31. },
  32. aboutXHours: {
  33. one: 'حوالي ساعة',
  34. two: 'حوالي ساعتين',
  35. threeToTen: 'حوالي {{count}} ساعات',
  36. other: 'حوالي {{count}} ساعة'
  37. },
  38. xHours: {
  39. one: 'ساعة',
  40. two: 'ساعتين',
  41. threeToTen: '{{count}} ساعات',
  42. other: '{{count}} ساعة'
  43. },
  44. xDays: {
  45. one: 'يوم',
  46. two: 'يومين',
  47. threeToTen: '{{count}} أيام',
  48. other: '{{count}} يوم'
  49. },
  50. aboutXWeeks: {
  51. one: 'حوالي أسبوع',
  52. two: 'حوالي أسبوعين',
  53. threeToTen: 'حوالي {{count}} أسابيع',
  54. other: 'حوالي {{count}} أسبوع'
  55. },
  56. xWeeks: {
  57. one: 'أسبوع',
  58. two: 'أسبوعين',
  59. threeToTen: '{{count}} أسابيع',
  60. other: '{{count}} أسبوع'
  61. },
  62. aboutXMonths: {
  63. one: 'حوالي شهر',
  64. two: 'حوالي شهرين',
  65. threeToTen: 'حوالي {{count}} أشهر',
  66. other: 'حوالي {{count}} شهر'
  67. },
  68. xMonths: {
  69. one: 'شهر',
  70. two: 'شهرين',
  71. threeToTen: '{{count}} أشهر',
  72. other: '{{count}} شهر'
  73. },
  74. aboutXYears: {
  75. one: 'حوالي سنة',
  76. two: 'حوالي سنتين',
  77. threeToTen: 'حوالي {{count}} سنين',
  78. other: 'حوالي {{count}} سنة'
  79. },
  80. xYears: {
  81. one: 'عام',
  82. two: 'عامين',
  83. threeToTen: '{{count}} أعوام',
  84. other: '{{count}} عام'
  85. },
  86. overXYears: {
  87. one: 'أكثر من سنة',
  88. two: 'أكثر من سنتين',
  89. threeToTen: 'أكثر من {{count}} سنين',
  90. other: 'أكثر من {{count}} سنة'
  91. },
  92. almostXYears: {
  93. one: 'عام تقريبًا',
  94. two: 'عامين تقريبًا',
  95. threeToTen: '{{count}} أعوام تقريبًا',
  96. other: '{{count}} عام تقريبًا'
  97. }
  98. };
  99. var formatDistance = function formatDistance(token, count, options) {
  100. var result;
  101. var tokenValue = formatDistanceLocale[token];
  102. if (typeof tokenValue === 'string') {
  103. result = tokenValue;
  104. } else if (count === 1) {
  105. result = tokenValue.one;
  106. } else if (count === 2) {
  107. result = tokenValue.two;
  108. } else if (count <= 10) {
  109. result = tokenValue.threeToTen.replace('{{count}}', String(count));
  110. } else {
  111. result = tokenValue.other.replace('{{count}}', String(count));
  112. }
  113. if (options !== null && options !== void 0 && options.addSuffix) {
  114. if (options.comparison && options.comparison > 0) {
  115. return "\u0641\u064A \u062E\u0644\u0627\u0644 ".concat(result);
  116. } else {
  117. return "\u0645\u0646\u0630 ".concat(result);
  118. }
  119. }
  120. return result;
  121. };
  122. var _default = formatDistance;
  123. exports.default = _default;
  124. module.exports = exports.default;