35 lines
1001 B
PHP
35 lines
1001 B
PHP
<?php
|
||
/**
|
||
* TablePress DataTables language file for "pt_BR".
|
||
*
|
||
* @package TablePress
|
||
* @subpackage DataTables
|
||
* @author Tobias Bäthge
|
||
* @since 2.0.0
|
||
*/
|
||
|
||
return array(
|
||
'emptyTable' => 'Nenhum registro encontrado',
|
||
'info' => 'Mostrando de _START_ até _END_ de _TOTAL_ registros',
|
||
'infoEmpty' => 'Mostrando 0 até 0 de 0 registros',
|
||
'infoFiltered' => '(Filtrados de _MAX_ registros)',
|
||
'infoPostFix' => '',
|
||
'lengthMenu' => '_MENU_ resultados por página',
|
||
'loadingRecords' => 'Carregando...',
|
||
'processing' => 'Processando...',
|
||
'search' => 'Pesquisar',
|
||
'zeroRecords' => 'Nenhum registro encontrado',
|
||
'paginate' => array(
|
||
'first' => '❮❮',
|
||
'previous' => '❮',
|
||
'next' => '❯',
|
||
'last' => '❯❯',
|
||
),
|
||
'aria' => array(
|
||
'sortAscending' => ': Ordenar colunas de forma ascendente',
|
||
'sortDescending' => ': Ordenar colunas de forma descendente',
|
||
),
|
||
'decimal' => ',',
|
||
'thousands' => '.',
|
||
);
|