mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 04:20:49 +08:00
improve migration file + seedbox management
This commit is contained in:
@@ -17,6 +17,7 @@ return [
|
||||
'torrent_state' => 'Free leach',
|
||||
'roles_list' => 'Roles',
|
||||
'ability_list' => 'Permissions',
|
||||
'seedbox_records' => 'SeedBox',
|
||||
],
|
||||
'resources' => [
|
||||
'agent_allow' => [
|
||||
|
||||
@@ -172,4 +172,14 @@ return [
|
||||
'role' => [
|
||||
'class' => 'Relate user class',
|
||||
],
|
||||
'seedbox_record' => [
|
||||
'label' => 'SeedBox Records',
|
||||
'type' => 'Add type',
|
||||
'operator' => 'Operator',
|
||||
'bandwidth' => 'Bandwidth(Mbps)',
|
||||
'ip' => 'IP(Block)',
|
||||
'ip_begin' => 'Begin IP',
|
||||
'ip_end' => 'End IP',
|
||||
'ip_help' => 'Begin IP/End IP, IP(Block) Choose one',
|
||||
],
|
||||
];
|
||||
|
||||
8
resources/lang/en/seedbox.php
Normal file
8
resources/lang/en/seedbox.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'type_text' => [
|
||||
\App\Models\SeedBoxRecord::TYPE_USER => 'User',
|
||||
\App\Models\SeedBoxRecord::TYPE_ADMIN => 'Administrator',
|
||||
],
|
||||
];
|
||||
@@ -17,6 +17,7 @@ return [
|
||||
'torrent_state' => '全站优惠',
|
||||
'roles_list' => '角色',
|
||||
'ability_list' => '权限',
|
||||
'seedbox_records' => 'SeedBox',
|
||||
],
|
||||
'resources' => [
|
||||
'agent_allow' => [
|
||||
|
||||
@@ -175,4 +175,14 @@ return [
|
||||
'name' => '标识',
|
||||
'title' => '名称',
|
||||
],
|
||||
'seedbox_record' => [
|
||||
'label' => 'SeedBox 记录',
|
||||
'type' => '添加类型',
|
||||
'operator' => '运营商',
|
||||
'bandwidth' => '带宽(Mbps)',
|
||||
'ip' => 'IP(段)',
|
||||
'ip_begin' => '起始 IP',
|
||||
'ip_end' => '结束 IP',
|
||||
'ip_help' => '起始 IP/结束 IP、IP(段) 二选一',
|
||||
],
|
||||
];
|
||||
|
||||
8
resources/lang/zh_CN/seedbox.php
Normal file
8
resources/lang/zh_CN/seedbox.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'type_text' => [
|
||||
\App\Models\SeedBoxRecord::TYPE_USER => '用户',
|
||||
\App\Models\SeedBoxRecord::TYPE_ADMIN => '管理员',
|
||||
],
|
||||
];
|
||||
@@ -17,6 +17,7 @@ return [
|
||||
'torrent_state' => '全站優惠',
|
||||
'roles_list' => '角色',
|
||||
'ability_list' => '權限',
|
||||
'seedbox_records' => 'SeedBox',
|
||||
],
|
||||
'resources' => [
|
||||
'agent_allow' => [
|
||||
|
||||
@@ -172,4 +172,14 @@ return [
|
||||
'role' => [
|
||||
'class' => '關聯用户等級',
|
||||
],
|
||||
'seedbox_record' => [
|
||||
'label' => 'SeedBox 記錄',
|
||||
'type' => '添加類型',
|
||||
'operator' => '運營商',
|
||||
'bandwidth' => '帶寬(Mbps)',
|
||||
'ip' => 'IP(段)',
|
||||
'ip_begin' => '起始 IP',
|
||||
'ip_end' => '結束 IP',
|
||||
'ip_help' => '起始 IP/結束 IP、IP(段) 二選一',
|
||||
],
|
||||
];
|
||||
|
||||
8
resources/lang/zh_TW/seedbox.php
Normal file
8
resources/lang/zh_TW/seedbox.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'type_text' => [
|
||||
\App\Models\SeedBoxRecord::TYPE_USER => '用戶',
|
||||
\App\Models\SeedBoxRecord::TYPE_ADMIN => '管理員',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user