Files

75 lines
4.1 KiB
PHP
Raw Permalink Normal View History

2021-04-28 19:44:48 +08:00
<?php
return [
'label' => '考核',
2024-05-24 02:27:44 +08:00
'name' => '名称',
'index' => '指标',
'time_range' => '时间',
2022-02-22 14:02:29 +08:00
'index_text_' . \App\Models\Exam::INDEX_UPLOADED => '上传增量',
2021-04-28 19:44:48 +08:00
'index_text_' . \App\Models\Exam::INDEX_SEED_TIME_AVERAGE => '平均做种时间',
2022-02-22 14:02:29 +08:00
'index_text_' . \App\Models\Exam::INDEX_DOWNLOADED => '下载增量',
2022-02-22 13:59:50 +08:00
'index_text_' . \App\Models\Exam::INDEX_SEED_BONUS => '魔力增量',
'index_text_' . \App\Models\Exam::INDEX_SEED_POINTS => '做种积分增量',
'index_text_' . \App\Models\Exam::INDEX_UPLOAD_TORRENT_COUNT => '发种增量',
2022-07-02 15:08:23 +08:00
'filters' => [
\App\Models\Exam::FILTER_USER_CLASS => '用户等级',
\App\Models\Exam::FILTER_USER_REGISTER_TIME_RANGE => '注册时间范围',
\App\Models\Exam::FILTER_USER_DONATE => '是否捐赠',
2023-11-15 02:19:03 +08:00
\App\Models\Exam::FILTER_USER_REGISTER_DAYS_RANGE => '注册天数范围',
2022-07-02 15:08:23 +08:00
],
2021-04-28 19:44:48 +08:00
'require_value' => '要求',
'current_value' => '当前',
'result' => '结果',
2024-05-24 02:27:44 +08:00
'result_pass_for_exam' => '通过!',
'result_pass_for_task' => '完成!',
'result_not_pass_for_exam' => '<span style="color: red">未通过!</span>',
'result_not_pass_for_task' => '<span style="color: red">未完成!</span>',
'checkout_pass_message_subject_for_exam' => '考核通过!',
'checkout_pass_message_content_for_exam' => '恭喜!你在规定时间内(:begin ~ :end)顺利完成了考核::exam_name。',
'checkout_not_pass_message_subject_for_exam' => '考核未通过,账号被禁用!',
'checkout_not_pass_message_content_for_exam' => '你在规定时间内(:begin ~ :end)未完成考核::exam_name,账号已被禁用。',
'checkout_pass_message_subject_for_task' => '任务完成!',
'checkout_pass_message_content_for_task' => '恭喜!你在规定时间内(:begin ~ :end)顺利完成了任务::exam_name,获得奖励魔力::success_reward_bonus',
'checkout_not_pass_message_subject_for_task' => '任务未完成!',
'checkout_not_pass_message_content_for_task' => '你在规定时间内(:begin ~ :end)未完成任务::exam_name,扣除魔力::fail_deduct_bonus。',
2021-05-12 13:45:00 +08:00
'ban_log_reason' => '未完成考核::exam_name(:begin ~ :end)',
2021-05-13 21:31:09 +08:00
'ban_user_modcomment' => '未完成考核: :exam_name(:begin ~ :end), 被系统禁用.',
2024-05-24 02:27:44 +08:00
'deduct_bonus_comment' => '未完成任务: :exam_name(:begin ~ :end), 扣除魔力::fail_deduct_bonus.',
'reward_bonus_comment' => '完成任务: :exam_name(:begin ~ :end), 奖励魔力::success_reward_bonus.',
2021-05-19 19:45:41 +08:00
'admin' => [
'list' => [
'page_title' => '考核列表'
]
2024-04-13 13:55:32 +08:00
],
'recurring' => '周期性',
'recurring_daily' => '每天一次',
2024-04-13 13:55:32 +08:00
'recurring_weekly' => '每周一次',
'recurring_monthly' => '每月一次',
2024-05-18 14:53:30 +08:00
'recurring_help' => '如果指定为周期性,考核开始时间为当前周期的开始时间,结束时间为当前周期的结束时间,这里说的都是自然日/周/月。对于类型为考核的,每个周期结束后,如果用户仍然满足筛选条件,会自动为用户分配下个周期的考核。',
2024-04-13 13:55:32 +08:00
'time_condition_invalid' => '时间参数不合理,有且只有三项之一:开始时间+结束时间/时长/周期性',
2024-05-18 14:53:30 +08:00
'type_exam' => '考核',
'type_task' => '任务',
'type' => '类型',
'type_help' => '考核是常规的考核,不通过会被封禁账号。任务可根据完成与否设置奖励魔力或扣除魔力',
2024-08-08 03:14:34 +08:00
'fail_deduct_bonus' => '失败扣除魔力',
'success_reward_bonus' => '完成奖励魔力',
2024-05-18 14:53:30 +08:00
2024-05-24 02:27:44 +08:00
'action_claim_task' => '领取',
2024-06-07 02:51:05 +08:00
'confirm_to_claim' => '确定要认领吗?',
'claim_by_yourself_only' => '只能自己认领!',
'not_match_target_user' => '你不是匹配的目标用户!',
'has_other_on_the_way' => '有其他进行中的:type_text',
'claimed_already' => '已经认领',
2024-08-08 03:14:34 +08:00
'not_between_begin_end_time' => '不在开始结束时间范围内',
'reach_max_user_count' => '认领人数已达上限',
'claimed_user_count' => '认领人数',
'max_user_count' => '最多认领人数(0表示无限制)',
2024-08-23 04:52:53 +08:00
'background_color' => '信息框背景色',
2021-04-28 19:44:48 +08:00
];