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

33 lines
688 B
PHP

<?php
return [
'title' => "네트워크장비정보",
'label' => [
'clientinfo_uid' => "소유자명",
'code' => "코드",
'type' => "종류",
'model' => "모델",
'price' => "금액",
'description' => "설명",
'status' => "상태",
'manufactur_at' => "제조일",
'updated_at' => "수정일",
'created_at' => "작성일",
],
'DEFAULTS' => [
'type' => 'L2',
'status' => "use"
],
"TYPE" => [
"L2" => "L2",
"L3" => "L3",
"L4" => "L4",
"Router" => "Router",
"colocation" => "코로케이션",
],
"STATUS" => [
"use" => "사용가능",
"pause" => "수리중",
"occupied" => "사용중",
],
];