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
42 lines
1.4 KiB
PHP
42 lines
1.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => '模板不存在',
|
|
'assoc_users' => '本模板下目前还有相关的资产,不能被删除,请删除资产以后,再重试。',
|
|
|
|
'create' => [
|
|
'error' => '模板没有被创建,请重试。',
|
|
'success' => '模板创建成功。',
|
|
'duplicate_set' => '资产名称、制造商和编号都相同的其它资产模板已存在。',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => '模板没有被更新,请重试。',
|
|
'success' => '模板更新成功。',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => '你确定删除这个模板吗?',
|
|
'error' => '删除模板的过程中出现了一点儿问题,请重试。',
|
|
'success' => '模板已经成功被删除',
|
|
],
|
|
|
|
'restore' => [
|
|
'error' => '型号未被恢复,请重试。',
|
|
'success' => '型号恢复成功。',
|
|
],
|
|
|
|
'bulkedit' => [
|
|
'error' => '没有字段被更改,因此没有更新任何内容。',
|
|
'success' => '模板已更新。',
|
|
],
|
|
|
|
'bulkdelete' => [
|
|
'error' => '没有型号被选中,所以没有删除任何东西。',
|
|
'success' => ':success_count 个已删除!',
|
|
'success_partial' => ':success_count 个已删除, 但是 :fail_count 个因为还有关联资产所以没办法删除。',
|
|
],
|
|
|
|
];
|