Correct Arabic month names

Correct Arabic month names. It's not right to concatenate month names from two different calendars [Assyrian calendar](https://en.wikipedia.org/wiki/Assyrian_calendar) and [Gregorian calendar](https://en.wikipedia.org/wiki/Gregorian_calendar)
This commit is contained in:
Mohammad AlTawil 2018-01-14 19:18:06 +03:00 committed by Gerhard Schlager
parent c4ffc85965
commit 234aa68bf8
1 changed files with 12 additions and 12 deletions

View File

@ -58,18 +58,18 @@ var pluralize = function (u) {
}; };
}; };
var months = [ var months = [
'كانون الثاني يناير', 'يناير',
'شباط فبراير', 'فبراير',
'آذار مارس', 'مارس',
'نيسان أبريل', 'أبريل',
'أيار مايو', 'مايو',
'حزيران يونيو', 'يونيو',
'تموز يوليو', 'يوليو',
'آب أغسطس', 'أغسطس',
'أيلول سبتمبر', 'سبتمبر',
'تشرين الأول أكتوبر', 'أكتوبر',
'تشرين الثاني نوفمبر', 'نوفمبر',
'كانون الأول ديسمبر' 'ديسمبر'
]; ];
var ar = moment.defineLocale('ar', { var ar = moment.defineLocale('ar', {