ok
This commit is contained in:
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => '부서가 존재하지 않습니다.',
|
||||
'department_already_exists' => 'A department already exists with that name at this company location. Or choose a more specific name for this department. ',
|
||||
'assoc_users' => '이 부서는 현재 적어도 한명의 사용자와 연결되어 있어서 삭제할 수 없습니다. 사용자가 더 이상 이 부서를 참조하지 않게 갱신하고 다시 시도해주세요. ',
|
||||
'create' => array(
|
||||
'error' => '부서가 생성되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '부서가 생성되었습니다.'
|
||||
),
|
||||
'update' => array(
|
||||
'error' => '부서가 갱신되지 않았습니다. 다시 시도해 주세요.',
|
||||
'success' => '부서가 갱신되었습니다.'
|
||||
),
|
||||
'delete' => array(
|
||||
'confirm' => '이 부서를 삭제하시겠습니까?',
|
||||
'error' => '부서를 삭제하는 중 문제가 발생했습니다. 다시 시도해 주세요.',
|
||||
'success' => '부서가 삭제되었습니다.'
|
||||
)
|
||||
|
||||
);
|
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'id' => 'ID',
|
||||
'name' => '부서 명',
|
||||
'manager' => '관리자',
|
||||
'location' => '위치',
|
||||
'create' => '부서 생성',
|
||||
'update' => '부서 갱신',
|
||||
);
|
Reference in New Issue
Block a user