diff options
author | Mohammed Alshehri <m@dralshehri.com> | 2014-05-11 23:30:07 +0300 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2014-10-22 17:04:57 -0400 |
commit | 06231cf7622fe112703c38535df71aa7f100ef7d (patch) | |
tree | 161b1143e18388e09d082c470ffdbc421558eca1 /ui/i18n | |
parent | 1fb08790a6cae0ac861df0373a303d72ed0e8d71 (diff) | |
download | jquery-ui-06231cf7622fe112703c38535df71aa7f100ef7d.tar.gz jquery-ui-06231cf7622fe112703c38535df71aa7f100ef7d.zip |
Datepicker: Fixed month names and firstDay value in Arabic locale
Fixes #10035
Closes gh-1246
Diffstat (limited to 'ui/i18n')
-rw-r--r-- | ui/i18n/datepicker-ar.js | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/ui/i18n/datepicker-ar.js b/ui/i18n/datepicker-ar.js index c93fed48d..c9ee84a54 100644 --- a/ui/i18n/datepicker-ar.js +++ b/ui/i18n/datepicker-ar.js @@ -1,6 +1,7 @@ /* Arabic Translation for jQuery UI date picker plugin. */ -/* Khaled Alhourani -- me@khaledalhourani.com */ -/* NOTE: monthNames are the original months names and they are the Arabic names, not the new months name فبراير - يناير and there isn't any Arabic roots for these months */ +/* Used in most of Arab countries, primarily in Bahrain, Kuwait, Oman, Qatar, Saudi Arabia and the United Arab Emirates, Egypt, Sudan and Yemen. */ +/* Written by Mohammed Alshehri -- m@dralshehri.com */ + (function( factory ) { if ( typeof define === "function" && define.amd ) { @@ -18,15 +19,15 @@ datepicker.regional['ar'] = { prevText: '<السابق', nextText: 'التالي>', currentText: 'اليوم', - monthNames: ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'مايو', 'حزيران', - 'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'], + monthNames: ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', + 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'], monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'], dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], - dayNamesShort: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], + dayNamesShort: ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'], dayNamesMin: ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'], weekHeader: 'أسبوع', dateFormat: 'dd/mm/yy', - firstDay: 6, + firstDay: 0, isRTL: true, showMonthAfterYear: false, yearSuffix: ''}; |