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

17 lines
526 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
return [
'admin' => [
'list' => [
'page_title' => '考核用戶列表'
]
],
'status' => [
\App\Models\ExamUser::STATUS_FINISHED => '已結束',
\App\Models\ExamUser::STATUS_AVOIDED => '已免除',
\App\Models\ExamUser::STATUS_NORMAL => '考核中',
],
'end_can_not_before_begin' => '結束時間::end 不能在開始時間::begin 之前',
'status_not_allow_update_end' => '當前狀態不為::status_text無法變更結束時間',
];