1 // moment.js locale configuration
2 // locale : Arabic Saudi Arabia (ar-sa)
3 // author : Suhail Alkowaileet : https://github.com/xsoh
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
40 return moment.defineLocale('ar-sa', {
41 months : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
42 monthsShort : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
43 weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
44 weekdaysShort : 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
45 weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),
51 LLL : 'D MMMM YYYY LT',
52 LLLL : 'dddd D MMMM YYYY LT'
54 meridiem : function (hour, minute, isLower) {
62 sameDay: '[اليوم على الساعة] LT',
63 nextDay: '[غدا على الساعة] LT',
64 nextWeek: 'dddd [على الساعة] LT',
65 lastDay: '[أمس على الساعة] LT',
66 lastWeek: 'dddd [على الساعة] LT',
84 preparse: function (string) {
85 return string.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {
86 return numberMap[match];
87 }).replace(/،/g, ',');
89 postformat: function (string) {
90 return string.replace(/\d/g, function (match) {
91 return symbolMap[match];
92 }).replace(/,/g, '،');
95 dow : 6, // Saturday is the first day of the week.
96 doy : 12 // The week that contains Jan 1st is the first week of the year.