41 lines
1.0 KiB
PHP
41 lines
1.0 KiB
PHP
<?php
|
|
return [
|
|
'title' => "서비스정보",
|
|
'label' => [
|
|
'user_uid' => "관리자",
|
|
'clientinfo_code' => "고객",
|
|
'serverinfo_code' => "서버",
|
|
'type' => "서비스형식",
|
|
'location' => "위치",
|
|
'billing_at' => "결제일",
|
|
'amount' => "서비스금액",
|
|
'start_at' => "시작일",
|
|
'end_at' => "해지일",
|
|
'history' => "사용이력",
|
|
'status' => "상태",
|
|
'updated_at' => "수정일",
|
|
'created_at' => "신청일",
|
|
'deleted_at' => "삭제일",
|
|
],
|
|
"LOCATION" => [
|
|
"chiba" => "치바",
|
|
"tokyo" => "도쿄",
|
|
"3center" => "3센터",
|
|
],
|
|
"TYPE" => [
|
|
"normal" => "일반",
|
|
"defence" => "방어",
|
|
"dedicated" => "전용",
|
|
"alternative" => "대체",
|
|
"test" => "테스트",
|
|
"VPN" => "VPN",
|
|
"ours" => "자사용",
|
|
"colocation" => "코로케이션",
|
|
],
|
|
"STATUS" => [
|
|
'normal' => "사용중",
|
|
"pause" => "일시정지",
|
|
"terminated" => "해지",
|
|
],
|
|
];
|