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,16 @@
<?php
return array(
'component_name' => '名称',
'checkin' => '借入组件',
'checkout' => '借出组件',
'cost' => '采购成本',
'create' => '新增组件',
'edit' => '编辑组件',
'date' => '采购日期',
'order' => '订单号',
'remaining' => '剩余',
'total' => '总计',
'update' => '更新组件',
'checkin_limit' => '归还的数量必须等于或小于 :assigned_qty'
);

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' => '还没有足够的组件: :remaining 件剩余, :requested 件需求 ',
),
'checkin' => array(
'error' => '借入组件失败,请重试。',
'success' => '借入组件成功。',
'user_does_not_exist' => '无效用户,请重试。'
)
);

View File

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