snipe-it/resources/lang/zh-CN/admin/departments/message.php
Laravel Shift 934afa036f Adopt Laravel coding style
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
2021-06-10 20:15:52 +00:00

22 lines
677 B
PHP

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