snipe-it/resources/lang/zh-CN/admin/hardware/message.php

72 lines
2.6 KiB
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
return array(
'undeployable' => '<strong>警告: </strong>该资产目前已经被标记为不可被分配,如果该资产状态已经改变,请刷新。',
'does_not_exist' => '资产不存在',
'does_not_exist_or_not_requestable' => '已重试,那个资产不存在或不可申请。',
'assoc_users' => '这个资产目前已经借给某个用户,不能被删除,请检查资产信息,然后再尝试删除。',
'create' => array(
'error' => '资产创建失败,请重试。:(',
'success' => '资产创建成功。 :)'
),
'update' => array(
'error' => '资产更新失败,请重试。',
'success' => '资产更新成功。',
'nothing_updated' => '一个也没有选,所以什么也不会更新。',
),
'restore' => array(
'error' => '资产未被恢复,请重试。',
'success' => '资产恢复成功。'
),
'deletefile' => array(
'error' => '文件删除失败,请重试',
'success' => '文件已成功删除。',
),
'upload' => array(
'error' => '文件上传失败,请重试。',
'success' => '文件已上传成功。',
'nofiles' => '尚未选择要上传的文件,或上传的文件过大。',
'invalidfiles' => '一个或多个文件过大或者属于不被允许的文件类型。允许上传的文件类型有PNGGIFJPGDOCDOCXPDF和TXT。',
),
2016-06-02 19:01:09 -07:00
'import' => array(
2016-08-25 17:43:07 -07:00
'error' => 'Some items did not import correctly.',
'errorDetail' => 'The following Items were not imported because of errors.',
'success' => "Your file has been imported",
2016-06-02 19:01:09 -07:00
),
2016-03-25 01:18:05 -07:00
'delete' => array(
'confirm' => '你确定要删除这个资产吗?',
'error' => '删除资产的过程中出现了一点儿问题,请重试。',
'success' => '资产成功被删除。'
),
'checkout' => array(
'error' => '资产未被借出,请重试',
'success' => '资产借出成功。',
2016-08-25 17:43:07 -07:00
'user_does_not_exist' => '无效用户,请重试。',
'not_available' => 'That asset is not available for checkout!'
2016-03-25 01:18:05 -07:00
),
'checkin' => array(
'error' => '资产还没有借入,请重试。',
'success' => '资产借入成功。',
'user_does_not_exist' => '无效用户,请重试。',
'already_checked_in' => '资产已经被申领',
2016-03-25 01:18:05 -07:00
),
'requests' => array(
'error' => '未能成功请求分配资产,请重试。',
'success' => '成功请求资产',
)
);