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.js 994B

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