22 lines
459 B
PHP
22 lines
459 B
PHP
<?php
|
|
return [
|
|
'title' => "Account정보",
|
|
'label' => [
|
|
'uid' => "번호",
|
|
'auth_uid' => "인증",
|
|
'title' => "계정명",
|
|
'type' => "계정형식",
|
|
'status' => "상태",
|
|
'updated_at' => "수정일",
|
|
'created_at' => "작성일",
|
|
],
|
|
"TYPE" => [
|
|
"standard" => "standard",
|
|
"enterprise" => "enterprise",
|
|
],
|
|
"STATUS" => [
|
|
"use" => "사용",
|
|
"unuse" => "사용않함",
|
|
],
|
|
];
|