45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<?php
|
|
return [
|
|
'title' => "Zone정보",
|
|
'label' => [
|
|
'uid' => "번호",
|
|
'account_uid' => "계정",
|
|
'domain' => "도메인",
|
|
'name_servers' => "네임서버",
|
|
'original_name_servers' => "이전네임서버",
|
|
'plan' => "plan",
|
|
'development_mode' => "개발모드",
|
|
'ipv6' => "ipv6",
|
|
'security_level' => "공격방어",
|
|
'status' => "서비스",
|
|
'updated_at' => "수정일",
|
|
'created_at' => "작성일",
|
|
'domains' => "도메인명",
|
|
'hosts' => "호스트명",
|
|
'type' => "TYPE",
|
|
'content' => "IP정보",
|
|
'proxied' => "CDN기능",
|
|
],
|
|
"ACCOUNT_UID" => [],
|
|
"DEVELOPMENT_MODE" => [
|
|
"on" => "사용",
|
|
"off" => "사용않함",
|
|
],
|
|
"IPV6" => [
|
|
"on" => "사용",
|
|
"off" => "사용않함",
|
|
],
|
|
"SECURITY_LEVEL" => [
|
|
"under_attack" => "under_attack",
|
|
"medium" => "medium",
|
|
"low" => "low",
|
|
"essentially_off" => "essentially_off",
|
|
],
|
|
"STATUS" => [
|
|
"initializing" => "initializing",
|
|
"pending" => "pending",
|
|
"active" => "active",
|
|
"moved" => "moved"
|
|
],
|
|
];
|