ajout app

This commit is contained in:
2024-04-17 20:22:30 +02:00
parent cc017cfc5e
commit f9d05a2fd3
8025 changed files with 729805 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<?php
return array(
'accessory_category' => '配件类别',
'accessory_name' => '配件名称',
'checkout' => '借出配件',
'checkin' => '借入配件',
'create' => '新增配件',
'edit' => '编辑配件',
'eula_text' => '类别的最终用户许可协议',
'eula_text_help' => '此字段允许您自定义的EULA最终用户许可协议为特定类型的资产。如果您所有资产只有一个EULA最终用户许可协议你可以检查下面的框中使用默认设置。',
'require_acceptance' => '要求用户确认接受这一类的资产。',
'no_default_eula' => '没有发现默认EULA最终用户许可协议。请在设置中添加一个。',
'total' => '共计',
'remaining' => '可用',
'update' => '更新配件',
'use_default_eula' => '用<a href="#" data-toggle="modal" data-target="#eulaModal">默认EULA最终用户许可协议</a>进行替换',
'use_default_eula_disabled' => '<del>使用默认EULA最终用户许可协议.</del>没有设置默认EULA最终用户许可协议请在设置中增加一个。',
'clone' => '克隆配件',
'delete_disabled' => '不能删除此配件,因为有些物品仍然被借出。',
);

View File

@ -0,0 +1,39 @@
<?php
return array(
'does_not_exist' => '配件[:id] 不存在。',
'not_found' => '找不到该配件。',
'assoc_users' => '配件目前状态:可用数量不足,请检查改配件再重试。',
'create' => array(
'error' => '配件添加失败,请重试。',
'success' => '配件添加成功。'
),
'update' => array(
'error' => '配件更新失败,请重试。',
'success' => '配件更新成功。'
),
'delete' => array(
'confirm' => '你确定要删除此配件?',
'error' => '删除配件出错,请重试。',
'success' => '删除配件成功'
),
'checkout' => array(
'error' => '配件不能被预订,请重试。',
'success' => '配件成功预订。',
'unavailable' => '配件不可被借出。检查可用数量',
'user_does_not_exist' => '无效用户,请重试。'
),
'checkin' => array(
'error' => '附件未成功入库,请再试一次',
'success' => '配件入库成功。',
'user_does_not_exist' => '无效用户,请重试。'
)
);

View File

@ -0,0 +1,11 @@
<?php
return array(
'dl_csv' => '下载CSV文件',
'eula_text' => '最终用户许可协议',
'id' => 'ID',
'require_acceptance' => '验收',
'title' => '配件名称',
);