Files
nexusphp/resources/lang/en/exam-user.php
2023-11-15 02:57:53 +08:00

17 lines
505 B
PHP

<?php
return [
'admin' => [
'list' => [
'page_title' => 'Exam users'
]
],
'status' => [
\App\Models\ExamUser::STATUS_FINISHED => 'Finished',
\App\Models\ExamUser::STATUS_AVOIDED => 'Avoided',
\App\Models\ExamUser::STATUS_NORMAL => 'Normal',
],
'end_can_not_before_begin' => "End time: :end can't be before begin time: :begin",
'status_not_allow_update_end' => 'Current status is not::status_text, unable to change end time',
];