Last active
May 21, 2022 14:42
-
-
Save caioagiani/27f154cd1998c9cf06202e9779826a6d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $.datepicker.regional['pt-BR'] = { | |
| closeText: 'Fechar', | |
| prevText: '< Mês anterior', | |
| nextText: 'Próximo mês >', | |
| 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']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment