mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
26 lines
870 B
PHP
26 lines
870 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => '分类不存在',
|
|
'assoc_models' => '此分类下至少还有一个相关资产型号,目前不能被删除,请你确定您的所有资产型号不在此分类下,然后重试。',
|
|
'assoc_items' => '此分类下至少还有一个相关资产类型,目前不能被删除,请你确定您的所有资产类型不在此分类下,然后重试。',
|
|
|
|
'create' => [
|
|
'error' => '分类创建失败,请重试。',
|
|
'success' => '分类创建成功',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => '分类更新失败,请重试',
|
|
'success' => '分类更新成功',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => '你确定要删除这个分类吗?',
|
|
'error' => '删除分类出现异常,请重试。',
|
|
'success' => '分类已经被成功删除。',
|
|
],
|
|
|
|
];
|