1
|
/* Arabic Translation for jQuery UI date picker plugin. */
|
2
|
/* Khaled Alhourani -- me@khaledalhourani.com */
|
3
|
/* 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 */
|
4
|
jQuery(function($){
|
5
|
$.datepicker.regional['ar'] = {
|
6
|
closeText: 'إغلاق',
|
7
|
prevText: '<السابق',
|
8
|
nextText: 'التالي>',
|
9
|
currentText: 'اليوم',
|
10
|
monthNames: [‘يناير’,’فبراير’,’مارس’,’ابريل’,’مايو’,’يونيو’,’يوليو’,’أغسطس’,’سبتمبر’,’أكتوبر’,’نوفمبر’,’ديسمبر’],
|
11
|
monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'],
|
12
|
dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
|
13
|
dayNamesShort: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'],
|
14
|
dayNamesMin: ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'],
|
15
|
weekHeader: 'أسبوع',
|
16
|
dateFormat: 'dd/mm/yy',
|
17
|
firstDay: 6,
|
18
|
isRTL: true,
|
19
|
showMonthAfterYear: false,
|
20
|
yearSuffix: ''};
|
21
|
$.datepicker.setDefaults($.datepicker.regional['ar']);
|
22
|
});
|