This commit is contained in:
xiaomlove
2024-05-24 02:27:44 +08:00
parent 615bf19a3a
commit 2de8ffd9e0
8 changed files with 283 additions and 45 deletions

View File

@@ -21,6 +21,8 @@ return [
\App\Models\BonusLogs::BUSINESS_TYPE_BUY_CHANGE_USERNAME_CARD => '购买改名卡',
\App\Models\BonusLogs::BUSINESS_TYPE_GIFT_MEDAL => '赠送勋章',
\App\Models\BonusLogs::BUSINESS_TYPE_BUY_TORRENT => '购买种子',
\App\Models\BonusLogs::BUSINESS_TYPE_TASK_PASS_REWARD => '任务完成奖励',
\App\Models\BonusLogs::BUSINESS_TYPE_TASK_NOT_PASS_DEDUCT => '任务未完成扣除',
\App\Models\BonusLogs::BUSINESS_TYPE_ROLE_WORK_SALARY => '工作组工资',
\App\Models\BonusLogs::BUSINESS_TYPE_TORRENT_BE_DOWNLOADED => '种子被下载',

View File

@@ -2,9 +2,9 @@
return [
'label' => '考核',
'name' => '考核名称',
'index' => '考核指标',
'time_range' => '考核时间',
'name' => '名称',
'index' => '指标',
'time_range' => '时间',
'index_text_' . \App\Models\Exam::INDEX_UPLOADED => '上传增量',
'index_text_' . \App\Models\Exam::INDEX_SEED_TIME_AVERAGE => '平均做种时间',
'index_text_' . \App\Models\Exam::INDEX_DOWNLOADED => '下载增量',
@@ -20,14 +20,25 @@ return [
'require_value' => '要求',
'current_value' => '当前',
'result' => '结果',
'result_pass' => '通过!',
'result_not_pass' => '<span style="color: red">未通过!</span>',
'checkout_pass_message_subject' => '考核通过!',
'checkout_pass_message_content' => '恭喜!你在规定时间内(:begin ~ :end顺利完成了考核:exam_name。',
'checkout_not_pass_message_subject' => '考核通过,账号被禁用',
'checkout_not_pass_message_content' => '你在规定时间内(:begin ~ :end完成考核::exam_name,账号已被禁用。',
'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。',
'ban_log_reason' => '未完成考核::exam_name(:begin ~ :end)',
'ban_user_modcomment' => '未完成考核: :exam_name(:begin ~ :end), 被系统禁用.',
'deduct_bonus_comment' => '未完成任务: :exam_name(:begin ~ :end), 扣除魔力::fail_deduct_bonus.',
'reward_bonus_comment' => '完成任务: :exam_name(:begin ~ :end), 奖励魔力::success_reward_bonus.',
'admin' => [
'list' => [
'page_title' => '考核列表'
@@ -49,4 +60,6 @@ return [
'fail_deduct_bonus' => '任务失败扣除魔力',
'success_reward_bonus' => '任务完成奖励魔力',
'action_claim_task' => '领取',
];