mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-05 07:20:58 +08:00
28 lines
912 B
PHP
28 lines
912 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'aria' => [
|
|
'sortAscending' => ': 升序排序',
|
|
'sortDescending' => ': 降序排序',
|
|
],
|
|
'emptyTable' => '无数据',
|
|
'info' => '当前展示第 _START_ 至第 _END_ 条,共 _TOTAL_ 条记录',
|
|
'infoEmpty' => '当前展示第 0 条至第 0 条,共 0 条记录',
|
|
'infoFiltered' => '(筛选自 _MAX_ 条记录)',
|
|
'lengthMenu' => '每页展示 _MENU_ 条记录',
|
|
'loadingRecords' => '加载中...',
|
|
'next' => '下一页 »',
|
|
'paginate' => [
|
|
'first' => '首页',
|
|
'last' => '尾页',
|
|
'next' => '下一页',
|
|
'previous' => '上一页',
|
|
],
|
|
'previous' => '« 上一页',
|
|
'search' => '搜索:',
|
|
'thousands' => ',',
|
|
'zeroRecords' => '没有发现任何匹配的记录',
|
|
];
|