2021-04-28 19:44:48 +08:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
return [
|
2022-10-22 01:49:34 +08:00
|
|
|
|
'label' => '考核',
|
2021-04-28 19:44:48 +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 => '魔力增量',
|
2023-11-08 03:17:23 +08:00
|
|
|
|
'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' => '結果',
|
|
|
|
|
|
'result_pass' => '通過!',
|
2021-05-02 17:24:05 +08:00
|
|
|
|
'result_not_pass' => '<span style="color: red">未通過!</span>',
|
2021-04-29 19:18:13 +08:00
|
|
|
|
'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,賬號已被禁用。',
|
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-04-16 02:36:51 +08:00
|
|
|
|
'admin' => [
|
|
|
|
|
|
'list' => [
|
|
|
|
|
|
'page_title' => '考核列表'
|
|
|
|
|
|
]
|
|
|
|
|
|
],
|
|
|
|
|
|
'recurring' => '周期性',
|
2024-04-24 14:45:30 +08:00
|
|
|
|
'recurring_daily' => '每天一次',
|
2024-04-16 02:36:51 +08:00
|
|
|
|
'recurring_weekly' => '每周一次',
|
|
|
|
|
|
'recurring_monthly' => '每月一次',
|
|
|
|
|
|
'recurring_help' => '如果指定為周期性,考核開始時間為當前周期的開始時間,結束時間為當前周期的結束時間,這裏說的都是自然周/月。每個周期結束後,如果用戶仍然滿足篩選條件,會自動為用戶分配下個周期的任務。',
|
|
|
|
|
|
|
|
|
|
|
|
'time_condition_invalid' => '時間參數不合理,有且只有三項之一:開始時間+結束時間/時長/周期性',
|
2021-04-28 19:44:48 +08:00
|
|
|
|
];
|