mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
25 lines
763 B
PHP
Executable file
25 lines
763 B
PHP
Executable file
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => '供应商不存在。',
|
|
'assoc_users' => '此供应商下至少还有一个相关模板,目前不能被删除,请你确定您的所有资产不在此分类下,然后重试。',
|
|
|
|
'create' => array(
|
|
'error' => '供应商没有被创建,请重试。',
|
|
'success' => '供应商创建成功。'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => '供应商没有被更新,请重试。',
|
|
'success' => '供应商更新成功。'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => '你确定要删除这个供应商吗?',
|
|
'error' => '删除供应商的过程中出现了一点儿问题,请重试。',
|
|
'success' => '供应商成功被删除。'
|
|
)
|
|
|
|
);
|