source: trunk/template-common/lib/ui/i18n/ui.datepicker-ar.js @ 4918

Last change on this file since 4918 was 4918, checked in by nikrou, 14 years ago

Feature 1442 : update jquery

  • update jquery to 1.4.1
  • update jquery ui to 1.7.2
  • Property svn:eol-style set to LF
File size: 1.2 KB
Line 
1/* Arabic Translation for jQuery UI date picker plugin. */
2/* Khaled Al Horani -- koko.dw@gmail.com */
3/* خالد الحوراني -- koko.dw@gmail.com */
4/* 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 */
5jQuery(function($){
6        $.datepicker.regional['ar'] = {
7                closeText: 'إغلاق',
8                prevText: '<السابق',
9                nextText: 'التالي>',
10                currentText: 'اليوم',
11                monthNames: ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'آذار', 'حزيران',
12                'تموز', 'آب', 'أيلول',  'تشرين الأول', 'تشرين الثاني', 'كانون الأول'],
13                monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'],
14                dayNames: ['السبت', 'الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة'],
15                dayNamesShort: ['سبت', 'أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة'],
16                dayNamesMin: ['سبت', 'أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة'],
17                dateFormat: 'dd/mm/yy', firstDay: 0,
18  isRTL: true};
19        $.datepicker.setDefaults($.datepicker.regional['ar']);
20});
Note: See TracBrowser for help on using the repository browser.