snipe-it/resources/lang/zh-CN/admin/companies/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

20 lines
667 B
PHP

<?php
return [
'does_not_exist' => '公司不存在',
'assoc_users' => '此公司下至少关联了一个模板,目前不能被删除,请你确定您的所有资产不在此公司下,然后重试。',
'create' => [
'error' => '新增公司失败,请重试。',
'success' => '新增公司成功。',
],
'update' => [
'error' => '更新公司失败,请重试。',
'success' => '更新公司成功。',
],
'delete' => [
'confirm' => '确定要删除这个公司吗?',
'error' => '删除公司出错,请重试。',
'success' => '删除公司成功。',
],
];