ar-ps.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. //! moment.js locale configuration
  2. //! locale : Arabic (Palestine) [ar-ps]
  3. //! author : Majd Al-Shihabi : https://github.com/majdal
  4. ;(function (global, factory) {
  5. typeof exports === 'object' && typeof module !== 'undefined'
  6. && typeof require === 'function' ? factory(require('../moment')) :
  7. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  8. factory(global.moment)
  9. }(this, (function (moment) { 'use strict';
  10. //! moment.js locale configuration
  11. var symbolMap = {
  12. 1: '١',
  13. 2: '٢',
  14. 3: '٣',
  15. 4: '٤',
  16. 5: '٥',
  17. 6: '٦',
  18. 7: '٧',
  19. 8: '٨',
  20. 9: '٩',
  21. 0: '٠',
  22. },
  23. numberMap = {
  24. '١': '1',
  25. '٢': '2',
  26. '٣': '3',
  27. '٤': '4',
  28. '٥': '5',
  29. '٦': '6',
  30. '٧': '7',
  31. '٨': '8',
  32. '٩': '9',
  33. '٠': '0',
  34. };
  35. var arPs = moment.defineLocale('ar-ps', {
  36. months: 'كانون الثاني_شباط_آذار_نيسان_أيّار_حزيران_تمّوز_آب_أيلول_تشري الأوّل_تشرين الثاني_كانون الأوّل'.split(
  37. '_'
  38. ),
  39. monthsShort:
  40. 'ك٢_شباط_آذار_نيسان_أيّار_حزيران_تمّوز_آب_أيلول_ت١_ت٢_ك١'.split('_'),
  41. weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  42. weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
  43. weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  44. weekdaysParseExact: true,
  45. longDateFormat: {
  46. LT: 'HH:mm',
  47. LTS: 'HH:mm:ss',
  48. L: 'DD/MM/YYYY',
  49. LL: 'D MMMM YYYY',
  50. LLL: 'D MMMM YYYY HH:mm',
  51. LLLL: 'dddd D MMMM YYYY HH:mm',
  52. },
  53. meridiemParse: /ص|م/,
  54. isPM: function (input) {
  55. return 'م' === input;
  56. },
  57. meridiem: function (hour, minute, isLower) {
  58. if (hour < 12) {
  59. return 'ص';
  60. } else {
  61. return 'م';
  62. }
  63. },
  64. calendar: {
  65. sameDay: '[اليوم على الساعة] LT',
  66. nextDay: '[غدا على الساعة] LT',
  67. nextWeek: 'dddd [على الساعة] LT',
  68. lastDay: '[أمس على الساعة] LT',
  69. lastWeek: 'dddd [على الساعة] LT',
  70. sameElse: 'L',
  71. },
  72. relativeTime: {
  73. future: 'في %s',
  74. past: 'منذ %s',
  75. s: 'ثوان',
  76. ss: '%d ثانية',
  77. m: 'دقيقة',
  78. mm: '%d دقائق',
  79. h: 'ساعة',
  80. hh: '%d ساعات',
  81. d: 'يوم',
  82. dd: '%d أيام',
  83. M: 'شهر',
  84. MM: '%d أشهر',
  85. y: 'سنة',
  86. yy: '%d سنوات',
  87. },
  88. preparse: function (string) {
  89. return string
  90. .replace(/[٣٤٥٦٧٨٩٠]/g, function (match) {
  91. return numberMap[match];
  92. })
  93. .split('') // reversed since negative lookbehind not supported everywhere
  94. .reverse()
  95. .join('')
  96. .replace(/[١٢](?![\u062a\u0643])/g, function (match) {
  97. return numberMap[match];
  98. })
  99. .split('')
  100. .reverse()
  101. .join('')
  102. .replace(/،/g, ',');
  103. },
  104. postformat: function (string) {
  105. return string
  106. .replace(/\d/g, function (match) {
  107. return symbolMap[match];
  108. })
  109. .replace(/,/g, '،');
  110. },
  111. week: {
  112. dow: 0, // Sunday is the first day of the week.
  113. doy: 6, // The week that contains Jan 6th is the first week of the year.
  114. },
  115. });
  116. return arPs;
  117. })));