| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /**
- * Bootstrap Table Brazilian Portuguese Translation
- * Author: Eduardo Cerqueira<egcerqueira@gmail.com>
- * Update: João Mello<jmello@hotmail.com.br>
- * Update: Leandro Felizari<lfelizari@gmail.com>
- * Update: Fernando Marcos Souza Silva<fernandomarcosss@gmail.com>
- */
- $.fn.bootstrapTable.locales['pt-BR'] = {
- formatCopyRows () {
- return 'Copy Rows'
- },
- formatPrint () {
- return 'Print'
- },
- formatLoadingMessage () {
- return 'Carregando, aguarde'
- },
- formatRecordsPerPage (pageNumber) {
- return `${pageNumber} registros por página`
- },
- formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return `Exibindo ${pageFrom} até ${pageTo} de ${totalRows} linhas (filtradas de um total de ${totalNotFiltered} linhas)`
- }
- return `Exibindo ${pageFrom} até ${pageTo} de ${totalRows} linhas`
- },
- formatSRPaginationPreText () {
- return 'página anterior'
- },
- formatSRPaginationPageText (page) {
- return `Para a página ${page}`
- },
- formatSRPaginationNextText () {
- return 'próxima página'
- },
- formatDetailPagination (totalRows) {
- return `Mostrando ${totalRows} linhas`
- },
- formatClearSearch () {
- return 'Limpar Pesquisa'
- },
- formatSearch () {
- return 'Pesquisar'
- },
- formatNoMatches () {
- return 'Nenhum registro encontrado'
- },
- formatPaginationSwitch () {
- return 'Ocultar/Exibir paginação'
- },
- formatPaginationSwitchDown () {
- return 'Mostrar Paginação'
- },
- formatPaginationSwitchUp () {
- return 'Esconder Paginação'
- },
- formatRefresh () {
- return 'Recarregar'
- },
- formatToggleOn () {
- return 'Show card view'
- },
- formatToggleOff () {
- return 'Hide card view'
- },
- formatColumns () {
- return 'Colunas'
- },
- formatColumnsToggleAll () {
- return 'Alternar tudo'
- },
- formatFullscreen () {
- return 'Tela cheia'
- },
- formatAllRows () {
- return 'Tudo'
- },
- formatAutoRefresh () {
- return 'Atualização Automática'
- },
- formatExport () {
- return 'Exportar dados'
- },
- formatJumpTo () {
- return 'IR'
- },
- formatAdvancedSearch () {
- return 'Pesquisa Avançada'
- },
- formatAdvancedCloseButton () {
- return 'Fechar'
- },
- formatFilterControlSwitch () {
- return 'Ocultar/Exibir controles'
- },
- formatFilterControlSwitchHide () {
- return 'Ocultar controles'
- },
- formatFilterControlSwitchShow () {
- return 'Exibir controles'
- }
- }
- Object.assign($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['pt-BR'])
|