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
22 lines
677 B
PHP
22 lines
677 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => '部门不存在',
|
|
'assoc_users' => '该位置下关联的还有其他用户,目前不能删除,请更新该用户的信息之后,再尝试删除。 ',
|
|
'create' => [
|
|
'error' => '部门没有创建,请重试。',
|
|
'success' => '部门创建成功。',
|
|
],
|
|
'update' => [
|
|
'error' => '部门没有更新,请重试',
|
|
'success' => '部门更新成功。',
|
|
],
|
|
'delete' => [
|
|
'confirm' => '你确定要删除这个部门吗?',
|
|
'error' => '删除部门有一个问题。请再试一次。',
|
|
'success' => '已成功删除该部门。',
|
|
],
|
|
|
|
];
|