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
1.1 KiB
PHP
27 lines
1.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => '供应商不存在。',
|
|
|
|
'create' => [
|
|
'error' => '供应商没有被创建,请重试。',
|
|
'success' => '供应商创建成功。',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => '供应商没有被更新,请重试。',
|
|
'success' => '供应商更新成功。',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => '你确定要删除这个供应商吗?',
|
|
'error' => '删除供应商的过程中出现了一点儿问题,请重试。',
|
|
'success' => '供应商成功被删除。',
|
|
'assoc_assets' => '此供应商下至少还有 :asset_count 个相关模板,目前不能被删除,请你确定您的所有资 产不在此分类下,然后重试。 ',
|
|
'assoc_licenses' => '此供应商目前与 :licenses_count 个许可证相关联,不能删除。请更新您的许可证,断开与此供应商的关联,然后重试。 ',
|
|
'assoc_maintenances' => '此供应商下至少还有 :asset_count 个相关模板,目前不能被删除,请你确定您的所有资产不在此分类下,然后重试。 ',
|
|
],
|
|
|
|
];
|