Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ar-sa.js 3.4KB

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