mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
31 lines
1.0 KiB
PHP
31 lines
1.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
'edit_ban_reason' => 'Disable by administrator',
|
|
'deleted_username' => 'user not exists',
|
|
'admin' => [
|
|
'list' => [
|
|
'page_title' => 'User list'
|
|
]
|
|
],
|
|
'labels' => [
|
|
'seedbonus' => 'Bonus',
|
|
'seed_points' => 'Seed points',
|
|
'uploaded' => 'Uploaded',
|
|
'downloaded' => 'Downloaded',
|
|
'invites' => 'Invites',
|
|
'attendance_card' => 'Attend card',
|
|
'props' => 'Props',
|
|
],
|
|
'class_names' => [
|
|
\App\Models\User::CLASS_VIP => 'Vip',
|
|
\App\Models\User::CLASS_RETIREE => 'Retiree',
|
|
\App\Models\User::CLASS_UPLOADER => 'Uploader',
|
|
\App\Models\User::CLASS_MODERATOR => 'Moderator',
|
|
\App\Models\User::CLASS_ADMINISTRATOR => 'Administrator',
|
|
\App\Models\User::CLASS_SYSOP => 'Sysop',
|
|
\App\Models\User::CLASS_STAFF_LEADER => 'Staff Leader',
|
|
],
|
|
'change_username_lte_min_interval' => 'Last change time: :last_change_time, unmet minimum interval: :interval days',
|
|
];
|