mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
19 lines
859 B
JavaScript
19 lines
859 B
JavaScript
|
/* Inicializaci<63>n en espa<70>ol para la extensi<73>n 'UI date picker' para jQuery. */
|
|||
|
/* Traducido por Vester (xvester@gmail.com). */
|
|||
|
jQuery(function($){
|
|||
|
$.datepicker.regional['es'] = {
|
|||
|
closeText: 'Cerrar',
|
|||
|
prevText: '<Ant',
|
|||
|
nextText: 'Sig>',
|
|||
|
currentText: 'Hoy',
|
|||
|
monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio',
|
|||
|
'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'],
|
|||
|
monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun',
|
|||
|
'Jul','Ago','Sep','Oct','Nov','Dic'],
|
|||
|
dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'],
|
|||
|
dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'],
|
|||
|
dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'],
|
|||
|
dateFormat: 'dd/mm/yy', firstDay: 0,
|
|||
|
isRTL: false};
|
|||
|
$.datepicker.setDefaults($.datepicker.regional['es']);
|
|||
|
});
|