mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-16 05:50:55 +08:00
28 lines
954 B
PHP
28 lines
954 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'aria' => [
|
|
'sortAscending' => ': attivare per ordinare la colonna crescente',
|
|
'sortDescending' => ': attivare per ordinare la colonna decrescente',
|
|
],
|
|
'emptyTable' => 'Nessun dato disponibile nella tabella',
|
|
'info' => 'Mostrando _START_ a _END_ di _TOTAL_ voci',
|
|
'infoEmpty' => 'Mostrando da 0 a 0 di 0 voci',
|
|
'infoFiltered' => '(filtrato da _MAX_ voci totali)',
|
|
'lengthMenu' => 'Mostra voci _MENU_',
|
|
'loadingRecords' => 'Caricamento...',
|
|
'next' => 'Prossima »',
|
|
'paginate' => [
|
|
'first' => 'Primo',
|
|
'last' => 'Ultimo',
|
|
'next' => 'Successivo',
|
|
'previous' => 'Precedente',
|
|
],
|
|
'previous' => '« Precedente',
|
|
'search' => 'Cerca:',
|
|
'thousands' => ',',
|
|
'zeroRecords' => 'Nessun record corrispondente trovato',
|
|
];
|