mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
21 lines
984 B
PHP
21 lines
984 B
PHP
<?php
|
|
|
|
return [
|
|
'name' => 'Exam name',
|
|
'index' => 'Exam index',
|
|
'time_range' => 'Exam time',
|
|
'index_text_' . \App\Models\Exam::INDEX_UPLOADED => 'Uploaded',
|
|
'index_text_' . \App\Models\Exam::INDEX_SEED_TIME_AVERAGE => 'Seed time average',
|
|
'index_text_' . \App\Models\Exam::INDEX_DOWNLOADED => 'Downloaded',
|
|
'index_text_' . \App\Models\Exam::INDEX_BONUS => 'Bonus',
|
|
'require_value' => 'Require',
|
|
'current_value' => 'Current',
|
|
'result' => 'Result',
|
|
'result_pass' => 'Pass!',
|
|
'result_not_pass' => '<bold color="red">Not pass!</bold>',
|
|
'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!',
|
|
];
|