1 //! moment.js locale configuration
2 //! locale : Arabic (Saudi Arabia) [ar-sa]
3 //! author : Suhail Alkowaileet : https://github.com/xsoh
5 ;(function (global
, factory
) {
6 typeof exports
=== 'object' && typeof module
!== 'undefined'
7 && typeof require
=== 'function' ? factory(require('../moment')) :
8 typeof define
=== 'function' && define
.amd
? define(['../moment'], factory
) :
10 }(this, function (moment
) { 'use strict';
37 var ar_sa
= moment
.defineLocale('ar-sa', {
38 months
: 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
39 monthsShort
: 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
40 weekdays
: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
41 weekdaysShort
: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
42 weekdaysMin
: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
43 weekdaysParseExact
: true,
49 LLL
: 'D MMMM YYYY HH:mm',
50 LLLL
: 'dddd D MMMM YYYY HH:mm'
53 isPM : function (input
) {
56 meridiem : function (hour
, minute
, isLower
) {
64 sameDay
: '[اليوم على الساعة] LT',
65 nextDay
: '[غدا على الساعة] LT',
66 nextWeek
: 'dddd [على الساعة] LT',
67 lastDay
: '[أمس على الساعة] LT',
68 lastWeek
: 'dddd [على الساعة] LT',
86 preparse: function (string
) {
87 return string
.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match
) {
88 return numberMap
[match
];
89 }).replace(/،/g, ',');
91 postformat: function (string
) {
92 return string
.replace(/\d/g, function (match
) {
93 return symbolMap
[match
];
94 }).replace(/,/g
, '،');
97 dow
: 6, // Saturday is the first day of the week.
98 doy
: 12 // The week that contains Jan 1st is the first week of the year.