1/* Arabic Translation for jQuery UI date picker plugin. */ 2/* Used in most of Arab countries, primarily in Bahrain, Kuwait, Oman, Qatar, Saudi Arabia and the United Arab Emirates, Egypt, Sudan and Yemen. */ 3/* Written by Mohammed Alshehri -- m@dralshehri.com */ 4 5(function( factory ) { 6 if ( typeof define === "function" && define.amd ) { 7 8 // AMD. Register as an anonymous module. 9 define([ "../datepicker" ], factory ); 10 } else { 11 12 // Browser globals 13 factory( jQuery.datepicker ); 14 } 15}(function( datepicker ) { 16 17datepicker.regional['ar'] = { 18 closeText: 'إغلاق', 19 prevText: '<السابق', 20 nextText: 'التالي>', 21 currentText: 'اليوم', 22 monthNames: ['يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو', 23 'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'], 24 monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'], 25 dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 26 dayNamesShort: ['أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة', 'سبت'], 27 dayNamesMin: ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'], 28 weekHeader: 'أسبوع', 29 dateFormat: 'dd/mm/yy', 30 firstDay: 0, 31 isRTL: true, 32 showMonthAfterYear: false, 33 yearSuffix: ''}; 34datepicker.setDefaults(datepicker.regional['ar']); 35 36return datepicker.regional['ar']; 37 38})); 39