35 lines
991 B
PHP
35 lines
991 B
PHP
<?php
|
||
/**
|
||
* TablePress DataTables language file for "pt_PT".
|
||
*
|
||
* @package TablePress
|
||
* @subpackage DataTables
|
||
* @author Tobias Bäthge
|
||
* @since 2.0.0
|
||
*/
|
||
|
||
return array(
|
||
'emptyTable' => 'Nenhum registo encontrado na tabela',
|
||
'info' => 'A mostrar _START_ a _END_ de _TOTAL_ registos',
|
||
'infoEmpty' => 'A mostrar 0 registos',
|
||
'infoFiltered' => '(filtrado do total de _MAX_ registos)',
|
||
'infoPostFix' => '',
|
||
'lengthMenu' => 'Mostrar _MENU_ registos',
|
||
'loadingRecords' => 'A carregar...',
|
||
'processing' => 'A processar...',
|
||
'search' => 'Pesquisar:',
|
||
'zeroRecords' => 'Nenhum resultado encontrado',
|
||
'paginate' => array(
|
||
'first' => '❮❮',
|
||
'previous' => '❮',
|
||
'next' => '❯',
|
||
'last' => '❯❯',
|
||
),
|
||
'aria' => array(
|
||
'sortAscending' => ': Ordenar colunas de modo ascendente',
|
||
'sortDescending' => ': Ordenar colunas de modo descendente',
|
||
),
|
||
'decimal' => ',',
|
||
'thousands' => '.',
|
||
);
|