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-pt-BR.js 1.0KB

12345678910111213141516171819202122232425
  1. /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat (MIT) */
  2. /* Brazilian initialisation for the jQuery UI date picker plugin. */
  3. /* Written by Leonildo Costa Silva (leocsilva@gmail.com). */
  4. jQuery(function($){
  5. $.datepicker.regional['pt-BR'] = {
  6. closeText: 'Fechar',
  7. prevText: '<Anterior',
  8. nextText: 'Próximo>',
  9. currentText: 'Hoje',
  10. monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho',
  11. 'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'],
  12. monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun',
  13. 'Jul','Ago','Set','Out','Nov','Dez'],
  14. dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'],
  15. dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'],
  16. dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'],
  17. weekHeader: 'Sm',
  18. dateFormat: 'dd/mm/yy',
  19. firstDay: 0,
  20. isRTL: false,
  21. showMonthAfterYear: false,
  22. yearSuffix: ''};
  23. $.datepicker.setDefaults($.datepicker.regional['pt-BR']);
  24. });
  25. /* @license-end */