You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

jquery.ui.datepicker-es.js 1016B

12345678910111213141516171819202122232425
  1. /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat (MIT) */
  2. /* Inicialización en español para la extensión 'UI date picker' para jQuery. */
  3. /* Traducido por Vester (xvester@gmail.com). */
  4. jQuery(function($){
  5. $.datepicker.regional['es'] = {
  6. closeText: 'Cerrar',
  7. prevText: '<Ant',
  8. nextText: 'Sig>',
  9. currentText: 'Hoy',
  10. monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio',
  11. 'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'],
  12. monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun',
  13. 'Jul','Ago','Sep','Oct','Nov','Dic'],
  14. dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'],
  15. dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'],
  16. dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'],
  17. weekHeader: 'Sm',
  18. dateFormat: 'dd/mm/yy',
  19. firstDay: 1,
  20. isRTL: false,
  21. showMonthAfterYear: false,
  22. yearSuffix: ''};
  23. $.datepicker.setDefaults($.datepicker.regional['es']);
  24. });
  25. /* @license-end */