58 lines
1.4 KiB
PHP
58 lines
1.4 KiB
PHP
<?php
|
|
return [
|
|
'title' => "서비스정보",
|
|
'label' => [
|
|
'user_uid' => "관리자",
|
|
'clientinfo_uid' => "고객",
|
|
'serverinfo_uid' => "서버",
|
|
'site' => "사이트",
|
|
'code' => "코드",
|
|
'type' => "형식",
|
|
'location' => "위치",
|
|
'rack' => "상면비",
|
|
'line' => "회선비",
|
|
'billing_at' => "결제일",
|
|
'amount' => "월청구액",
|
|
'start_at' => "시작일",
|
|
'end_at' => "해지일",
|
|
'history' => "사용이력",
|
|
'status' => "상태",
|
|
'updated_at' => "수정일",
|
|
'created_at' => "신청일",
|
|
'deleted_at' => "삭제일",
|
|
],
|
|
"SITE" => SITES,
|
|
"LOCATION" => [
|
|
"chiba" => "치바",
|
|
"tokyo" => "도쿄",
|
|
"3center" => "3센터",
|
|
],
|
|
"TYPE" => [
|
|
"normal" => "일반",
|
|
"defence" => "방어",
|
|
"dedicated" => "전용",
|
|
"vpn" => "VPN",
|
|
"event" => "이벤트",
|
|
"test" => "테스트",
|
|
"alternative" => "대체",
|
|
"ours" => "자사용",
|
|
"colocation" => "코로케이션",
|
|
],
|
|
"RACK" => [
|
|
"0" => "0원",
|
|
"100000" => "10만원",
|
|
"200000" => "20만원",
|
|
"300000" => "30만원",
|
|
],
|
|
"LINE" => [
|
|
"0" => "0원",
|
|
"300000" => "30만원",
|
|
"500000" => "50만원",
|
|
],
|
|
"STATUS" => [
|
|
STATUS['AVAILABLE'] => "사용중",
|
|
STATUS['PAUSE'] => "일시정지",
|
|
STATUS['TERMINATED'] => "해지",
|
|
],
|
|
];
|