Project

General

Profile

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