snipe-it/resources/lang/ko/admin/groups/message.php
Laravel Shift 934afa036f Adopt Laravel coding style
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
2021-06-10 20:15:52 +00:00

23 lines
843 B
PHP

<?php
return [
'group_exists' => '그룹이 이미 존재합니다!',
'group_not_found' => '그룹 [:id]는 존재하지 않습니다.',
'group_name_required' => '이름 항목을 입력해주세요.',
'success' => [
'create' => '그룹이 생성되었습니다.',
'update' => '그룹이 갱신되었습니다.',
'delete' => '그룹이 삭제되었습니다.',
],
'delete' => [
'confirm' => '이 그룹을 삭제 하시겠습니까?',
'create' => '그룹을 생성하는 중 문제가 발생했습니다. 다시 시도해 주세요.',
'update' => '그룹을 갱신하는 중 오류가 발생했습니다. 다시 시도해 주세요.',
'delete' => '그룹을 삭제하는 중 문제가 발생했습니다. 다시 시도해 주세요.',
],
];