This commit is contained in:
2024-04-19 10:27:36 +02:00
parent fcb6bbe566
commit 35c96e715c
7852 changed files with 4815 additions and 8 deletions

View File

@ -0,0 +1,11 @@
<?php
return array(
'checkout' => '사용자에게 소모품 반출',
'consumable_name' => '소모품 명',
'create' => '소모품 생성',
'item_no' => '항목 번호',
'remaining' => '잔여수량',
'total' => '총계',
'update' => '소모품 갱신',
);

View File

@ -0,0 +1,37 @@
<?php
return array(
'does_not_exist' => '소모품이 존재하지 않습니다.',
'create' => array(
'error' => '소모품이 생성되지 않았습니다. 다시 시도해 주세요.',
'success' => '소모품이 생성되었습니다.'
),
'update' => array(
'error' => '소모품이 수정되지 않았습니다. 다시 시도해 주세요.',
'success' => '소모품이 수정되었습니다.'
),
'delete' => array(
'confirm' => '이 소모품을 삭제하시겠습니까?',
'error' => '소모품 삭제시 문제가 발생했습니다. 다시 시도해 주세요.',
'success' => '소모품이 삭제 되었습니다.'
),
'checkout' => array(
'error' => '소모품이 반출되지 않았습니다. 다시 시도해 주세요.',
'success' => '소모품이 반출 되었습니다.',
'user_does_not_exist' => '잘못된 사용자 입니다. 다시 시도해 주세요.',
'unavailable' => 'There are not enough consumables for this checkout. Please check the quantity left. ',
),
'checkin' => array(
'error' => '소모품이 반입되지 않았습니다. 다시 시도해 주세요.',
'success' => '소모품이 반입 되었습니다.',
'user_does_not_exist' => '잘못된 사용자 입니다. 다시 시도해 주세요.'
)
);

View File

@ -0,0 +1,5 @@
<?php
return array(
'title' => '소모품 명',
);