dbms/app/Language/en/Equipment/Server.php
2025-05-16 18:57:21 +09:00

30 lines
630 B
PHP

<?php
return [
'title' => "서버장비정보",
'label' => [
'code' => "장비코드",
'type' => "종류",
'model' => "모델",
'description' => "설명",
'status' => "상태",
'manufactur_at' => "입고일",
'updated_at' => "수정일",
'created_at' => "작성일",
],
'DEFAULTS' => [
'type' => 'RacKMount',
'status' => "use"
],
"TYPE" => [
"Rack" => "RacKMount",
"PC" => "조립PC",
"MiniPC" => "MiniPC",
"colocation" => "코로케이션",
],
"STATUS" => [
"use" => "사용가능",
"pause" => "일시정지",
"occupied" => "사용중",
],
];