Last active
August 28, 2023 19:30
-
-
Save hmaesta/fa13e922dea32075bbb49403a3b7da4e to your computer and use it in GitHub Desktop.
Pikaday Brazilian Portuguese translation (Português Brasileiro)
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
var i18n = { | |
previousMonth: 'Mês anterior', | |
nextMonth: 'Próximo mês', | |
months: ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro'], | |
weekdays: ['Domingo', 'Segunda-feira', 'Terça-feira', 'Quarta-feira', 'Quinta-feira', 'Sexta-feira', 'Sábado'], | |
weekdaysShort: ['Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sáb'] | |
}; | |
$("#date").pikaday({ | |
format: "YYYY-MM-DD", //adjust to your liking | |
changeMonth: true, | |
changeYear: true, | |
maxDate: moment().toDate(), | |
yearRange: [2010,2020], | |
i18n: i18n, | |
firstDay:0 | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment