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
27 lines
985 B
PHP
27 lines
985 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => '位置不存在',
|
|
'assoc_users' => '该位置下管理的还有其他用户,目前不能删除,请更新该用户的信息之后,再尝试删除。',
|
|
'assoc_assets' => '删除失败,该位置已与其它资产关联。请先更新资产以取消关联,然后重试。 ',
|
|
'assoc_child_loc' => '删除失败,该位置是一个或多个子位置的上层节点。请更新地理位置信息以取消关联,然后重试。 ',
|
|
|
|
'create' => [
|
|
'error' => '位置没有被创建,请重试。',
|
|
'success' => '位置创建成功。',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => '位置没有被更新,请重试。',
|
|
'success' => '位置更新成功。',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => '确定删除这个位置吗?',
|
|
'error' => '删除位置的过成中出现了一点儿问题,请重试。',
|
|
'success' => '位置已经成功删除。',
|
|
],
|
|
|
|
];
|