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