Files
nexusphp/resources/lang/zh_CN/seed-box.php
2024-11-22 01:37:57 +08:00

20 lines
749 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
return [
'type_text' => [
\App\Models\SeedBoxRecord::TYPE_USER => '用户',
\App\Models\SeedBoxRecord::TYPE_ADMIN => '管理员',
],
'status_text' => [
\App\Models\SeedBoxRecord::STATUS_UNAUDITED => '未审核',
\App\Models\SeedBoxRecord::STATUS_ALLOWED => '已通过',
\App\Models\SeedBoxRecord::STATUS_DENIED => '已拒绝',
],
'status_change_message' => [
'subject' => 'SeedBox 记录状态变更',
'body' => '你的 ID 为 :id 的 SeedBox 记录状态被 :operator 由 :old_status 变更为 :new_status。原因:reason',
],
'is_seed_box_yes' => '此 IP 是 SeedBox, 由 ID 为 :id 的记录确定',
'is_seed_box_no' => '此 IP 不是 SeedBox',
];