mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-13 09: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
18 lines
1.4 KiB
PHP
18 lines
1.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
'about_kits_title' => '사전 정의 도구들',
|
|
'about_kits_text' => '미리 정의된 키트를 사용하여 사용자에게 아이템(자산, 라이센스 등) 컬렉션을 신속하게 체크아웃할 수 있습니다. 이 기능은 온보드 프로세스가 여러 사용자 간에 일관되고 모든 사용자가 동일한 항목을 수신할 때 유용합니다.',
|
|
'checkout' => '체크 아웃 키트',
|
|
'create_success' => 'Kit was successfully created.',
|
|
'create' => 'Create Predefined Kit',
|
|
'update' => 'Update Predefined Kit',
|
|
'delete_success' => 'Kit was successfully deleted.',
|
|
'update_success' => 'Kit was successfully updated.',
|
|
'none_models' => 'There are not enough available assets for :model to checkout. :qty are required. ',
|
|
'none_licenses' => 'There are not enough available seats for :license to checkout. :qty are required. ',
|
|
'none_consumables' => 'There are not enough available units of :consumable to checkout. :qty are required. ',
|
|
'none_accessory' => 'There are not enough available units of :accessory to checkout. :qty are required. ',
|
|
|
|
];
|