mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-14 01:24:06 -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
22 lines
934 B
PHP
22 lines
934 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'update' => [
|
|
'error' => '갱신 중 오류가 발생했습니다. ',
|
|
'success' => '설정이 갱신되었습니다.',
|
|
],
|
|
'backup' => [
|
|
'delete_confirm' => '이 백업 파일을 지우시겠습니까? 이 동작은 되돌리기가 되지 않습니다. ',
|
|
'file_deleted' => '백업 파일이 삭제 되었습니다. ',
|
|
'generated' => '새 백업 파일이 생성되었습니다.',
|
|
'file_not_found' => '지정한 백업 파일을 서버에서 찾을 수 없습니다.',
|
|
],
|
|
'purge' => [
|
|
'error' => '삭제중 오류가 발생하였습니다. ',
|
|
'validation_failed' => '삭제 확인 절차가 잘못되었습니다. 확인 상자에 "DELETE"를 입력해 주세요.',
|
|
'success' => '삭제된 기록들이 삭제되었습니다.',
|
|
],
|
|
|
|
];
|