Files
nexusphp/resources/lang/zh_TW/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',
];