mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -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
20 lines
998 B
PHP
20 lines
998 B
PHP
<?php
|
|
|
|
return [
|
|
'does_not_exist' => '所属は存在しません',
|
|
'assoc_users' => 'この所属は現在少なくとも一つの型番に関連付けされているため削除できません。この所属を参照しないように更新した上で、もう一度試して下さい。 ',
|
|
'create' => [
|
|
'error' => '所属は作成されませんでした、もう一度やり直してください。',
|
|
'success' => '所属が正常に作成されました。',
|
|
],
|
|
'update' => [
|
|
'error' => '所属部署が更新されませんでした、もう一度やり直してください。',
|
|
'success' => '所属が正常に更新されました。',
|
|
],
|
|
'delete' => [
|
|
'confirm' => 'この所属を削除してもよろしいですか?',
|
|
'error' => '所属を削除する時に問題が発生しました。もう一度試して下さい。',
|
|
'success' => '所属の削除に成功しました。',
|
|
],
|
|
];
|