mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
ef10672364
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@92488 467b73ca-7a2a-4603-9d3b-597d59a354a9
23 lines
919 B
JavaScript
23 lines
919 B
JavaScript
/* Romanian initialisation for the jQuery UI date picker plugin.
|
|
*
|
|
* Written by Edmond L. (ll_edmond@walla.com)
|
|
* and Ionut G. Stan (ionut.g.stan@gmail.com)
|
|
*/
|
|
jQuery(function($){
|
|
$.datepicker.regional['ro'] = {
|
|
closeText: 'Închide',
|
|
prevText: '« Luna precedentă',
|
|
nextText: 'Luna următoare »',
|
|
currentText: 'Azi',
|
|
monthNames: ['Ianuarie','Februarie','Martie','Aprilie','Mai','Iunie',
|
|
'Iulie','August','Septembrie','Octombrie','Noiembrie','Decembrie'],
|
|
monthNamesShort: ['Ian', 'Feb', 'Mar', 'Apr', 'Mai', 'Iun',
|
|
'Iul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
|
|
dayNames: ['Duminică', 'Luni', 'Marţi', 'Miercuri', 'Joi', 'Vineri', 'Sâmbătă'],
|
|
dayNamesShort: ['Dum', 'Lun', 'Mar', 'Mie', 'Joi', 'Vin', 'Sâm'],
|
|
dayNamesMin: ['Du','Lu','Ma','Mi','Jo','Vi','Sâ'],
|
|
dateFormat: 'dd MM yy', firstDay: 1,
|
|
isRTL: false};
|
|
$.datepicker.setDefaults($.datepicker.regional['ro']);
|
|
});
|