24 lines
533 B
PHP
24 lines
533 B
PHP
<?php
|
|
return [
|
|
'title' => "Account정보",
|
|
'label' => [
|
|
'uid' => "번호",
|
|
'id' => "인증ID",
|
|
'authkey' => "인증Key",
|
|
'oldkey' => "이전인증Key",
|
|
'title' => "인증명",
|
|
'type' => "인증방식",
|
|
'status' => "상태",
|
|
'updated_at' => "수정일",
|
|
'created_at' => "작성일",
|
|
],
|
|
"TYPE" => [
|
|
"standard" => "standard",
|
|
"enterprise" => "enterprise",
|
|
],
|
|
"STATUS" => [
|
|
"use" => "사용",
|
|
"unuse" => "사용않함",
|
|
],
|
|
];
|