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.
23 lines
945 B
23 lines
945 B
/* Brazilian initialisation for the jQuery UI date picker plugin. */ |
|
/* Written by Leonildo Costa Silva (leocsilva@gmail.com). */ |
|
jQuery(function($){ |
|
$.datepicker.regional['pt-BR'] = { |
|
closeText: 'Fechar', |
|
prevText: '<Anterior', |
|
nextText: 'Próximo>', |
|
currentText: 'Hoje', |
|
monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho', |
|
'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'], |
|
monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun', |
|
'Jul','Ago','Set','Out','Nov','Dez'], |
|
dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'], |
|
dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], |
|
dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], |
|
weekHeader: 'Sm', |
|
dateFormat: 'dd/mm/yy', |
|
firstDay: 0, |
|
isRTL: false, |
|
showMonthAfterYear: false, |
|
yearSuffix: ''}; |
|
$.datepicker.setDefaults($.datepicker.regional['pt-BR']); |
|
});
|
|
|