source: trunk/themes/default/js/ui/i18n/jquery.ui.datepicker-fa.js @ 18630

Last change on this file since 18630 was 18630, checked in by rvelices, 12 years ago

feature 2771: upgrade jquery from 1.7.2 to 1.8.2 and jquery.ui from 1.8.16 to 1.9.0
Attention plugins: jquery ui effect script ids change when using combine_script because file names changed ...

File size: 1.1 KB
Line 
1/* Persian (Farsi) Translation for the jQuery UI date picker plugin. */
2/* Javad Mowlanezhad -- jmowla@gmail.com */
3/* Jalali calendar should supported soon! (Its implemented but I have to test it) */
4jQuery(function($) {
5        $.datepicker.regional['fa'] = {
6                closeText: 'بستن',
7                prevText: '<قبلی',
8                nextText: 'بعدی>',
9                currentText: 'امروز',
10                monthNames: [
11                        'فروردين',
12                        'ارديبهشت',
13                        'خرداد',
14                        'تير',
15                        'مرداد',
16                        'شهريور',
17                        'مهر',
18                        'آبان',
19                        'آذر',
20                        'دی',
21                        'بهمن',
22                        'اسفند'
23                ],
24                monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'],
25                dayNames: [
26                        'يکشنبه',
27                        'دوشنبه',
28                        'سه‌شنبه',
29                        'چهارشنبه',
30                        'پنجشنبه',
31                        'جمعه',
32                        'شنبه'
33                ],
34                dayNamesShort: [
35                        'ی',
36                        'د',
37                        'س',
38                        'چ',
39                        'پ',
40                        'ج', 
41                        'ش'
42                ],
43                dayNamesMin: [
44                        'ی',
45                        'د',
46                        'س',
47                        'چ',
48                        'پ',
49                        'ج', 
50                        'ش'
51                ],
52                weekHeader: 'هف',
53                dateFormat: 'yy/mm/dd',
54                firstDay: 6,
55                isRTL: true,
56                showMonthAfterYear: false,
57                yearSuffix: ''};
58        $.datepicker.setDefaults($.datepicker.regional['fa']);
59});
Note: See TracBrowser for help on using the repository browser.