Mercurial > hg > soundsoftware-site
comparison .svn/pristine/e7/e71637a73f060443d6aaaa6f4b486ab9b03c8adb.svn-base @ 1295:622f24f53b42 redmine-2.3
Update to Redmine SVN revision 11972 on 2.3-stable branch
author | Chris Cannam |
---|---|
date | Fri, 14 Jun 2013 09:02:21 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1294:3e4c3460b6ca | 1295:622f24f53b42 |
---|---|
1 /* Romanian initialisation for the jQuery UI date picker plugin. | |
2 * | |
3 * Written by Edmond L. (ll_edmond@walla.com) | |
4 * and Ionut G. Stan (ionut.g.stan@gmail.com) | |
5 */ | |
6 jQuery(function($){ | |
7 $.datepicker.regional['ro'] = { | |
8 closeText: 'Închide', | |
9 prevText: '« Luna precedentă', | |
10 nextText: 'Luna următoare »', | |
11 currentText: 'Azi', | |
12 monthNames: ['Ianuarie','Februarie','Martie','Aprilie','Mai','Iunie', | |
13 'Iulie','August','Septembrie','Octombrie','Noiembrie','Decembrie'], | |
14 monthNamesShort: ['Ian', 'Feb', 'Mar', 'Apr', 'Mai', 'Iun', | |
15 'Iul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], | |
16 dayNames: ['Duminică', 'Luni', 'Marţi', 'Miercuri', 'Joi', 'Vineri', 'Sâmbătă'], | |
17 dayNamesShort: ['Dum', 'Lun', 'Mar', 'Mie', 'Joi', 'Vin', 'Sâm'], | |
18 dayNamesMin: ['Du','Lu','Ma','Mi','Jo','Vi','Sâ'], | |
19 weekHeader: 'Săpt', | |
20 dateFormat: 'dd.mm.yy', | |
21 firstDay: 1, | |
22 isRTL: false, | |
23 showMonthAfterYear: false, | |
24 yearSuffix: ''}; | |
25 $.datepicker.setDefaults($.datepicker.regional['ro']); | |
26 }); |