dbms/app/Language/en/Customer/Service.php
2025-05-14 16:12:09 +09:00

30 lines
661 B
PHP

<?php
return [
'title' => "고객서비스정보",
'label' => [
'clientinfo_uid' => "고객명",
'type' => "종류",
'title' => "제목",
'payment_date' => "결제일",
'amount' => "결제금액",
'startdate_at' => "개통일",
'enddate_at' => "해지일",
'status' => "상태",
'updated_at' => "수정일",
'created_at' => "신청일",
],
'DEFAULTS' => [
'type' => "hosting",
'status' => "use"
],
"TYPE" => [
"hosting" => "서버호스팅",
"colocation" => "코로케이션",
],
"STATUS" => [
"use" => "사용중",
"pause" => "일시정지",
"terminated" => "해지",
],
];