mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-05-17 22:07:37 +08:00
Introduce filament
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'sidebar' => [
|
||||
'exam_users' => '用户考核',
|
||||
'hit_and_runs' => '用户 H&R',
|
||||
'users_list' => '用户列表',
|
||||
'tags_list' => '标签',
|
||||
'agent_allows' => '允许客户端',
|
||||
'agent_denies' => '拒绝客户端',
|
||||
'exams_list' => '考核',
|
||||
'medals_list' => '勋章',
|
||||
'settings' => '设置',
|
||||
],
|
||||
];
|
||||
@@ -52,6 +52,12 @@ return [
|
||||
],
|
||||
'latest_torrent' => [
|
||||
'page_title' => '最新种子',
|
||||
]
|
||||
],
|
||||
'torrent_trend' => [
|
||||
'page_title' => '种子趋势',
|
||||
],
|
||||
'user_trend' => [
|
||||
'page_title' => '用户趋势',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -5,5 +5,10 @@ return [
|
||||
'list' => [
|
||||
'page_title' => '考核用户列表'
|
||||
]
|
||||
]
|
||||
],
|
||||
'status' => [
|
||||
\App\Models\ExamUser::STATUS_FINISHED => '已结束',
|
||||
\App\Models\ExamUser::STATUS_AVOIDED => '已免除',
|
||||
\App\Models\ExamUser::STATUS_NORMAL => '考核中',
|
||||
],
|
||||
];
|
||||
|
||||
@@ -6,5 +6,9 @@ return [
|
||||
'list' => [
|
||||
'page_title' => '勋章列表'
|
||||
]
|
||||
]
|
||||
],
|
||||
'get_types' => [
|
||||
\App\Models\Medal::GET_TYPE_EXCHANGE => '兑换',
|
||||
\App\Models\Medal::GET_TYPE_GRANT => '授予',
|
||||
],
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user