mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
20 lines
763 B
PHP
20 lines
763 B
PHP
<?php
|
|
|
|
return [
|
|
'type_text' => [
|
|
\App\Models\SeedBoxRecord::TYPE_USER => 'User',
|
|
\App\Models\SeedBoxRecord::TYPE_ADMIN => 'Administrator',
|
|
],
|
|
'status_text' => [
|
|
\App\Models\SeedBoxRecord::STATUS_UNAUDITED => 'Unaudited',
|
|
\App\Models\SeedBoxRecord::STATUS_ALLOWED => 'Allowed',
|
|
\App\Models\SeedBoxRecord::STATUS_DENIED => 'Denied',
|
|
],
|
|
'status_change_message' => [
|
|
'subject' => 'SeedBox record status changed',
|
|
'body' => 'The status of your SeedBox record with ID :id was changed by :operator from :old_status to :new_status. Reason: :reason',
|
|
],
|
|
'is_seed_box_yes' => 'This IP is SeedBox, identified by the record with ID :id',
|
|
'is_seed_box_no' => 'This IP is not SeedBox',
|
|
];
|