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
30 lines
1.2 KiB
PHP
30 lines
1.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => '製造元が存在しません。',
|
|
'assoc_users' => 'この製造元は一つ以上の型番に関連付けられているため、削除できません。この製造元の関連付けを削除後、もう一度試して下さい。 ',
|
|
|
|
'create' => [
|
|
'error' => '製造元が作成できませんでした。もう一度試して下さい。',
|
|
'success' => '製造元が作成されました。',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => '製造元が更新できませんでした。もう一度試して下さい。',
|
|
'success' => '製造元が更新できませんでした。もう一度試して下さい。',
|
|
],
|
|
|
|
'restore' => [
|
|
'error' => '製造元が復元できませんでした。もう一度試して下さい。',
|
|
'success' => '製造元が復元されました。',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => '本当にこの製造元を削除しますか?',
|
|
'error' => '製造元を削除する際に問題が発生しました。もう一度試して下さい。',
|
|
'success' => '製造元が削除されました。',
|
|
],
|
|
|
|
];
|