Files
nexusphp/resources/lang/en/exam.php

44 lines
2.4 KiB
PHP
Raw Normal View History

<?php
return [
'label' => 'Exam',
'name' => 'Exam name',
'index' => 'Exam index',
'time_range' => 'Exam time',
2022-02-22 14:02:29 +08:00
'index_text_' . \App\Models\Exam::INDEX_UPLOADED => 'Upload increment',
'index_text_' . \App\Models\Exam::INDEX_SEED_TIME_AVERAGE => 'Seed time average',
2022-02-22 14:02:29 +08:00
'index_text_' . \App\Models\Exam::INDEX_DOWNLOADED => 'Download increment',
2022-02-22 13:59:50 +08:00
'index_text_' . \App\Models\Exam::INDEX_SEED_BONUS => 'Bonus increment',
'index_text_' . \App\Models\Exam::INDEX_SEED_POINTS => 'Seed points increment',
'index_text_' . \App\Models\Exam::INDEX_UPLOAD_TORRENT_COUNT => 'Upload torrent increment',
2022-07-02 15:08:23 +08:00
'filters' => [
\App\Models\Exam::FILTER_USER_CLASS => 'User class',
\App\Models\Exam::FILTER_USER_REGISTER_TIME_RANGE => 'Register time range',
\App\Models\Exam::FILTER_USER_DONATE => 'Donated',
\App\Models\Exam::FILTER_USER_REGISTER_DAYS_RANGE => 'Range of days of registration',
2022-07-02 15:08:23 +08:00
],
'require_value' => 'Require',
'current_value' => 'Current',
'result' => 'Result',
'result_pass' => 'Pass!',
2021-05-02 17:24:05 +08:00
'result_not_pass' => '<span style="color: red">Not pass!</span>',
2021-04-29 19:18:13 +08:00
'checkout_pass_message_subject' => 'Exam pass!',
'checkout_pass_message_content' => 'Congratulation! You have complete the exam: :exam_name in time(:begin ~ :end)',
'checkout_not_pass_message_subject' => 'Exam not pass, and account is banned!',
'checkout_not_pass_message_content' => 'You did not complete the exam: :exam_name in time(:begin ~ :end), and your account has be banned!',
2021-05-12 13:45:00 +08:00
'ban_log_reason' => 'Not complete exam: :exam_name in time(:begin ~ :end)',
2021-05-13 21:31:09 +08:00
'ban_user_modcomment' => 'Due to not complete exam: :exam_name(:begin ~ :end), ban by system.',
2024-04-16 02:36:51 +08:00
'admin' => [
'list' => [
'page_title' => 'Exam List'
]
],
'recurring' => 'recurring',
'recurring_daily' => 'once a day',
2024-04-16 02:36:51 +08:00
'recurring_weekly' => 'once a week',
'recurring_monthly' => 'once a month',
'recurring_help' => 'If specified as periodic, the appraisal start time is the start time of the current cycle, and the end time is the end time of the current cycle, which is said to be the natural week/month. At the end of each cycle, if the user still meets the screening criteria, the user will be automatically assigned to the next cycle.' ,
'time_condition_invalid' => 'The time parameter does not make sense, there are and only one of three items: start time + end time / duration / recurring',
];