29 lines
588 B
PHP
29 lines
588 B
PHP
<?php
|
|
return [
|
|
'title' => "회선정보",
|
|
'label' => [
|
|
'clientinfo_uid' => "소유자명",
|
|
'title' => "제목",
|
|
'type' => "종류",
|
|
'price' => "금액",
|
|
'bandwith' => "CIDR대역",
|
|
'status' => "상태",
|
|
'updated_at' => "수정일",
|
|
'created_at' => "작성일",
|
|
],
|
|
'DEFAULTS' => [
|
|
'type' => 'general',
|
|
'status' => "use"
|
|
],
|
|
"TYPE" => [
|
|
"general" => "일반",
|
|
"dedicated" => "전용",
|
|
"defence" => "방어",
|
|
],
|
|
"STATUS" => [
|
|
"use" => "사용가능",
|
|
"pause" => "일시정지",
|
|
"terminated" => "해지",
|
|
],
|
|
];
|