2009-07-05 05:15:33 +00:00
|
|
|
/* Inicialización en español para la extensión 'UI date picker' para jQuery. */
|
2008-06-04 02:34:33 +00:00
|
|
|
/* Traducido por Vester (xvester@gmail.com). */
|
|
|
|
jQuery(function($){
|
2008-07-25 09:59:05 +00:00
|
|
|
$.datepicker.regional['es'] = {
|
2009-01-04 18:11:41 +00:00
|
|
|
closeText: 'Cerrar',
|
2011-02-19 14:54:15 +00:00
|
|
|
prevText: '<Ant',
|
|
|
|
nextText: 'Sig>',
|
2009-01-04 18:11:41 +00:00
|
|
|
currentText: 'Hoy',
|
2008-06-04 02:34:33 +00:00
|
|
|
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'],
|
2011-02-19 14:54:15 +00:00
|
|
|
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á'],
|
2009-07-29 08:33:33 +00:00
|
|
|
weekHeader: 'Sm',
|
2009-04-01 10:34:16 +00:00
|
|
|
dateFormat: 'dd/mm/yy',
|
2009-07-05 05:15:33 +00:00
|
|
|
firstDay: 1,
|
2009-04-01 10:34:16 +00:00
|
|
|
isRTL: false,
|
|
|
|
showMonthAfterYear: false,
|
|
|
|
yearSuffix: ''};
|
2008-06-04 02:34:33 +00:00
|
|
|
$.datepicker.setDefaults($.datepicker.regional['es']);
|
2008-05-29 15:19:49 +00:00
|
|
|
});
|