Files
nexusphp/resources/lang/zh_CN/user.php

54 lines
1.8 KiB
PHP
Raw Normal View History

2021-05-12 13:45:00 +08:00
<?php
return [
'edit_ban_reason' => '被管理人员禁用',
'deleted_username' => '无此账号',
2021-05-19 19:45:41 +08:00
'admin' => [
'list' => [
'page_title' => '用户列表'
]
],
'labels' => [
'seedbonus' => '魔力',
'seed_points' => '做种积分',
'uploaded' => '上传量',
'downloaded' => '下载量',
'invites' => '邀请',
'attendance_card' => '补签卡',
2022-08-11 17:12:36 +08:00
'props' => '道具',
2023-01-07 19:34:59 +08:00
'class' => '等级',
],
2022-06-12 15:15:09 +08:00
'class_names' => [
\App\Models\User::CLASS_VIP => '贵宾',
\App\Models\User::CLASS_RETIREE => '养老族',
\App\Models\User::CLASS_UPLOADER => '发布员',
\App\Models\User::CLASS_MODERATOR => '总版主',
\App\Models\User::CLASS_ADMINISTRATOR => '管理员',
\App\Models\User::CLASS_SYSOP => '维护开发员',
\App\Models\User::CLASS_STAFF_LEADER => '主管',
],
2022-08-11 22:55:17 +08:00
'change_username_lte_min_interval' => '上次修改时间::last_change_time未满足最小间隔:interval 天',
'destroy_by_admin' => '被管理员物理删除',
'disable_by_admin' => '被管理員封禁',
2022-11-08 19:06:37 +08:00
'genders' => [
\App\Models\User::GENDER_MALE => '男',
\App\Models\User::GENDER_FEMALE => '女',
\App\Models\User::GENDER_UNKNOWN => '未知',
],
'grant_props_notification' => [
'subject' => '获得道具::name',
'body' => ':operator 授予你 :name 有效期::duration。',
],
2023-01-06 20:19:21 +08:00
'metas' => [
'already_valid_forever' => ':meta_key_text already valid forever',
],
2023-01-07 19:34:59 +08:00
'edit_notifications' => [
'change_class' => [
'promote' => '提升',
'demote' => '降级',
'subject' => '等级变化',
'body' => '你被:action为:new_class管理员:operator, 原因::reason。',
],
],
2021-05-12 13:45:00 +08:00
];