dbms/app/Language/en/Equipment/Line.php
2025-05-13 19:12:02 +09:00

28 lines
549 B
PHP

<?php
return [
'title' => "회선정보",
'label' => [
'title' => "제목",
'type' => "종류",
'price' => "금액",
'bandwith' => "CIDR대역",
'status' => "상태",
'updated_at' => "수정일",
'created_at' => "작성일",
],
'DEFAULTS' => [
'type' => 'general',
'status' => "use"
],
"TYPE" => [
"general" => "일반",
"dedicated" => "전용",
"defence" => "빙아",
],
"STATUS" => [
"use" => "사용가능",
"pause" => "사용정지",
"termination" => "해지",
],
];