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