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
37 lines
1 KiB
PHP
37 lines
1 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => '配件[:id] 不存在。',
|
|
'assoc_users' => '配件目前状态:可用数量不足,请检查改配件再重试。',
|
|
|
|
'create' => [
|
|
'error' => '配件添加失败,请重试。',
|
|
'success' => '配件添加成功。',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => '配件更新失败,请重试。',
|
|
'success' => '配件更新成功。',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => '你确定要删除此配件?',
|
|
'error' => '删除配件出错,请重试。',
|
|
'success' => '删除配件成功',
|
|
],
|
|
|
|
'checkout' => [
|
|
'error' => '配件不能被预订,请重试。',
|
|
'success' => '配件成功预订。',
|
|
'user_does_not_exist' => '无效用户,请重试。',
|
|
],
|
|
|
|
'checkin' => [
|
|
'error' => '附件未成功入库,请再试一次',
|
|
'success' => '配件入库成功。',
|
|
'user_does_not_exist' => '无效用户,请重试。',
|
|
],
|
|
|
|
];
|