29 lines
609 B
PHP
29 lines
609 B
PHP
<?php
|
|
return [
|
|
'title' => "소프트웨어정보",
|
|
'label' => [
|
|
'type' => "종류",
|
|
'model' => "모델",
|
|
'price' => "금액",
|
|
'description' => "설명",
|
|
'status' => "상태",
|
|
'updated_at' => "수정일",
|
|
'created_at' => "작성일",
|
|
],
|
|
'DEFAULTS' => [
|
|
'type' => 'Windows',
|
|
'status' => 'default'
|
|
],
|
|
"TYPE" => [
|
|
"Windows" => "Windows OS",
|
|
"Linux" => "Linux OS",
|
|
"Security" => "보안용",
|
|
"Virus" => "바이러스용",
|
|
"App" => "어플리케이션",
|
|
],
|
|
"STATUS" => [
|
|
'default' => "사용가능",
|
|
"pause" => "일시정지",
|
|
],
|
|
];
|