31 lines
632 B
PHP
31 lines
632 B
PHP
<?php
|
|
return [
|
|
'title' => "HP Server 정보",
|
|
'label' => [
|
|
'uid' => "번호",
|
|
'customer' => "고객",
|
|
'id' => "계정",
|
|
'passwd' => "암호",
|
|
'ip' => "IP",
|
|
'port' => "Port",
|
|
'model' => "Model",
|
|
'processor' => "CPU",
|
|
'memory' => "Memory",
|
|
'health' => "기타장비상태",
|
|
'power' => "전원",
|
|
'detail' => "상세내용",
|
|
'status' => "상태",
|
|
'updated_at' => "수정일",
|
|
'created_at' => "작성일"
|
|
],
|
|
"POWER" => [
|
|
"On" => "On",
|
|
"Off" => "Off",
|
|
"Restart" => "Restart",
|
|
],
|
|
"STATUS" => [
|
|
"use" => "사용",
|
|
"unuse" => "사용않함",
|
|
]
|
|
];
|