mirror of https://github.com/gogits/gogs.git
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.
15 lines
662 B
15 lines
662 B
/** |
|
* Brazilian translation for bootstrap-datepicker |
|
* Cauan Cabral <cauan@radig.com.br> |
|
*/ |
|
;(function($){ |
|
$.fn.datepicker.dates['pt-BR'] = { |
|
days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"], |
|
daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"], |
|
daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"], |
|
months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], |
|
monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], |
|
today: "Hoje", |
|
clear: "Limpar" |
|
}; |
|
}(jQuery));
|
|
|