mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -08:00
a0b05bac8d
Signed-off-by: snipe <snipe@snipe.net>
27 lines
994 B
PHP
27 lines
994 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => '分类不存在',
|
|
'assoc_models' => '此分类下至少还有一个相关资产型号,目前不能被删除,请你确定您的所有资产型号不在此分类下,然后重试。',
|
|
'assoc_items' => '此分类下至少还有一个相关资产类型,目前不能被删除,请你确定您的所有资产类型不在此分类下,然后重试。',
|
|
|
|
'create' => array(
|
|
'error' => '分类创建失败,请重试。',
|
|
'success' => '分类创建成功'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => '分类更新失败,请重试',
|
|
'success' => '分类更新成功',
|
|
'cannot_change_category_type' => 'You cannot change the category type once it has been created',
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => '你确定要删除这个分类吗?',
|
|
'error' => '删除分类出现异常,请重试。',
|
|
'success' => '分类已经被成功删除。'
|
|
)
|
|
|
|
);
|