| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /**
- * Bootstrap Table Brazilian Portuguese Translation
- * Author: Eduardo Cerqueira<egcerqueira@gmail.com>
- * Update: João Mello<jmello@hotmail.com.br>
- */
- ($ => {
- $.fn.bootstrapTable.locales['pt-BR'] = {
- formatLoadingMessage () {
- return 'Carregando, aguarde...'
- },
- formatRecordsPerPage (pageNumber) {
- return `${pageNumber} registros por página`
- },
- formatShowingRows (pageFrom, pageTo, totalRows) {
- return `Exibindo ${pageFrom} até ${pageTo} de ${totalRows} linhas`
- },
- formatDetailPagination (totalRows) {
- return `Showing ${totalRows} rows`
- },
- formatSearch () {
- return 'Pesquisar'
- },
- formatNoMatches () {
- return 'Nenhum registro encontrado'
- },
- formatPaginationSwitch () {
- return 'Ocultar/Exibir paginação'
- },
- formatRefresh () {
- return 'Recarregar'
- },
- formatToggle () {
- return 'Alternar'
- },
- formatColumns () {
- return 'Colunas'
- },
- formatFullscreen () {
- return 'Fullscreen'
- },
- formatAllRows () {
- return 'All'
- },
- formatAutoRefresh () {
- return 'Auto Refresh'
- },
- formatExport () {
- return 'Export data'
- },
- formatClearFilters () {
- return 'Clear filters'
- },
- formatJumpto () {
- return 'GO'
- },
- formatAdvancedSearch () {
- return 'Advanced search'
- },
- formatAdvancedCloseButton () {
- return 'Close'
- }
- }
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['pt-BR'])
- })(jQuery)
|