This commit is contained in:
2024-04-19 10:27:36 +02:00
parent fcb6bbe566
commit 35c96e715c
7852 changed files with 4815 additions and 8 deletions

View File

@ -0,0 +1,11 @@
<?php
return array(
'checkout' => '领取耗材给使用者',
'consumable_name' => '耗材名称',
'create' => '创建耗材',
'item_no' => '项目编号',
'remaining' => '剩余',
'total' => '总计',
'update' => '更新耗材',
);

View File

@ -0,0 +1,37 @@
<?php
return array(
'does_not_exist' => '耗材不存在。',
'create' => array(
'error' => '耗材未被创建,请重试。',
'success' => '耗材创建成功。'
),
'update' => array(
'error' => '耗材未被更新,请重试。',
'success' => '耗材更新成功。'
),
'delete' => array(
'confirm' => '您确定希望删除此耗材?',
'error' => '删除耗材失败,请重试',
'success' => '成功删除此耗材。'
),
'checkout' => array(
'error' => '耗材领取失败,请重试',
'success' => '耗材领取成功',
'user_does_not_exist' => '无效用户,请重试。',
'unavailable' => '没有足够的耗材可被借出。请检查剩余数量。 ',
),
'checkin' => array(
'error' => '耗材登记失败,请重试',
'success' => '耗材登记成功',
'user_does_not_exist' => '无效用户,请重试。'
)
);

View File

@ -0,0 +1,5 @@
<?php
return array(
'title' => '耗材名称',
);