update lang

This commit is contained in:
xiaomlove
2025-05-05 21:27:48 +07:00
parent fb88455323
commit 6814e3ca4d
664 changed files with 28724 additions and 6738 deletions
+14 -17
View File
@@ -1,19 +1,16 @@
<?php
return array (
'admin' =>
array (
'list' =>
array (
'page_title' => '評価ユーザーリスト',
),
),
'status' =>
array (
1 => '終了しました',
-1 => '免除',
0 => 'アンダー評価',
),
'end_can_not_before_begin' => '終了時間::終了は開始時間前にできません:: begin',
'status_not_allow_update_end' => '現在のステータスは:: status_textではありません、終了時間は変更できません',
);
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 cannot be before begin: :begin",
'status_not_allow_update_end' => '現在のステータスはnot::status_textで、終了時刻を変更できません',
];