mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
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:
parent
c4ffc85965
commit
234aa68bf8
@ -58,18 +58,18 @@ var pluralize = function (u) {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
var months = [
|
var months = [
|
||||||
'كانون الثاني يناير',
|
'يناير',
|
||||||
'شباط فبراير',
|
'فبراير',
|
||||||
'آذار مارس',
|
'مارس',
|
||||||
'نيسان أبريل',
|
'أبريل',
|
||||||
'أيار مايو',
|
'مايو',
|
||||||
'حزيران يونيو',
|
'يونيو',
|
||||||
'تموز يوليو',
|
'يوليو',
|
||||||
'آب أغسطس',
|
'أغسطس',
|
||||||
'أيلول سبتمبر',
|
'سبتمبر',
|
||||||
'تشرين الأول أكتوبر',
|
'أكتوبر',
|
||||||
'تشرين الثاني نوفمبر',
|
'نوفمبر',
|
||||||
'كانون الأول ديسمبر'
|
'ديسمبر'
|
||||||
];
|
];
|
||||||
|
|
||||||
var ar = moment.defineLocale('ar', {
|
var ar = moment.defineLocale('ar', {
|
||||||
|
Loading…
Reference in New Issue
Block a user