mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-15 18:14:09 -08:00
bd0863d9c7
Signed-off-by: snipe <snipe@snipe.net>
21 lines
710 B
PHP
21 lines
710 B
PHP
<?php
|
|
|
|
return [
|
|
'does_not_exist' => '公司不存在',
|
|
'deleted' => '已删除公司',
|
|
'assoc_users' => '此公司下至少关联了一个模板,目前不能被删除,请你确定您的所有资产不在此公司下,然后重试。',
|
|
'create' => [
|
|
'error' => '新增公司失败,请重试。',
|
|
'success' => '新增公司成功。',
|
|
],
|
|
'update' => [
|
|
'error' => '更新公司失败,请重试。',
|
|
'success' => '更新公司成功。',
|
|
],
|
|
'delete' => [
|
|
'confirm' => '确定要删除这个公司吗?',
|
|
'error' => '删除公司出错,请重试。',
|
|
'success' => '删除公司成功。',
|
|
],
|
|
];
|