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.7 KiB
PHP
42 lines
1.7 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 개는 관련된 자산이 있기에 삭제할 수 없습니다.',
|
|
],
|
|
|
|
];
|