Created
October 23, 2016 16:38
-
-
Save claudiohilario/88771cf84cc87f6cbd0d269f9674257f to your computer and use it in GitHub Desktop.
Tradução para português do Date Picker (materializecss)
This file contains 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
$(function () { | |
//Config datepiker matrializecss () language | |
$('.datepicker').pickadate({ | |
selectMonths: true,//Creates a dropdown to control month | |
selectYears: 15,//Creates a dropdown of 15 years to control year | |
//The title label to use for the month nav buttons | |
labelMonthNext: 'Proximo Mês', | |
labelMonthPrev: 'Mês Anterior', | |
//The title label to use for the dropdown selectors | |
labelMonthSelect: 'Selecionar Mês', | |
labelYearSelect: 'Selecionar Ano', | |
//Months and weekdays | |
monthsFull: [ 'Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro' ], | |
monthsShort: [ 'Jan', 'Fev', 'Mar', 'Abr', 'Maio', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez' ], | |
weekdaysFull: [ 'Domingo', 'Segunda', 'Terça', 'Quarta', 'Quinta', 'Sexta', 'Sábado' ], | |
weekdaysShort: [ 'Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sáb' ], | |
//Materialize modified | |
weekdaysLetter: [ 'D', 'S', 'T', 'Q', 'Q', 'S', 'S' ], | |
//Today and clear | |
today: 'Hoje', | |
clear: 'Limpar', | |
close: 'Fechar', | |
//The format to show on the `input` element | |
format: 'dd/mm/yyyy' | |
}); | |
}); |
Código para tradução do timepicker
$(document).ready(function() { $('.timepicker').timepicker({ i18n: { cancel: 'Cancelar', clear: 'Limpar', done: 'Ok' }, twelveHour : false, // 12 horas, usa AM/PM autoclose: false //Fecha o timepicker automaticamente apos selecionar a hora }); });
Atentar-se ao nome dado a função datepicker. Muitas documentações mostram como:
$('.datepicker').pickadate();
O ideal seria utilizar:
$('.datepicker').datepicker();
Feito isso, o que o @buutqn sugeriu faz efeito
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Houveram mudanças na versão alpha 1.0
Segue o código que uso na versão 1.0.0-alpha.3
Exemplo de uso javascript e jQuery: