comparison plugins/jqueryui/js/i18n/jquery.ui.datepicker-fa.js @ 0:1e000243b222

vanilla 1.3.3 distro, I hope
author Charlie Root
date Thu, 04 Jan 2018 15:50:29 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1e000243b222
1 /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat (MIT) */
2 /* Persian (Farsi) Translation for the jQuery UI date picker plugin. */
3 /* Javad Mowlanezhad -- jmowla@gmail.com */
4 /* Jalali calendar should supported soon! (Its implemented but I have to test it) */
5 jQuery(function($) {
6 $.datepicker.regional['fa'] = {
7 closeText: 'بستن',
8 prevText: '<قبلی',
9 nextText: 'بعدی>',
10 currentText: 'امروز',
11 monthNames: [
12 'فروردين',
13 'ارديبهشت',
14 'خرداد',
15 'تير',
16 'مرداد',
17 'شهريور',
18 'مهر',
19 'آبان',
20 'آذر',
21 'دی',
22 'بهمن',
23 'اسفند'
24 ],
25 monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'],
26 dayNames: [
27 'يکشنبه',
28 'دوشنبه',
29 'سه‌شنبه',
30 'چهارشنبه',
31 'پنجشنبه',
32 'جمعه',
33 'شنبه'
34 ],
35 dayNamesShort: [
36 'ی',
37 'د',
38 'س',
39 'چ',
40 'پ',
41 'ج',
42 'ش'
43 ],
44 dayNamesMin: [
45 'ی',
46 'د',
47 'س',
48 'چ',
49 'پ',
50 'ج',
51 'ش'
52 ],
53 weekHeader: 'هف',
54 dateFormat: 'yy/mm/dd',
55 firstDay: 6,
56 isRTL: true,
57 showMonthAfterYear: false,
58 yearSuffix: ''};
59 $.datepicker.setDefaults($.datepicker.regional['fa']);
60 });
61 /* @license-end */