vhost/app/Language/ko/Category.php
2024-05-06 14:32:40 +09:00

35 lines
963 B
PHP

<?php
$roles = [
'guest' => '비회원', 'user' => '일반회원', 'vip' => 'VIP회원',
'manager' => '관리자', 'cloudflare' => "Cloudflare관리자",
'director' => '감독자', 'master' => "마스터",
];
return [
'title' => "분류 정보",
'label' => [
'uid' => "번호",
'name' => "분류제목",
'linkurl' => "LinkURL",
'photo' => "이미지",
'isaccess' => "접속권한",
'isread' => "읽기권한",
'iswrite' => "쓰기권한",
'isreply' => "답변권한",
'isupload' => "Upload권한",
'isdownload' => "Download권한",
'head' => "머리글",
'tail' => "꼬리글",
'status' => "상태",
'updated_at' => "수정일",
'created_at' => "작성일"
],
"ISACCESS" => $roles,
"ISREAD" => $roles,
"ISWRITE" => $roles,
"ISREPLY" => $roles,
"ISUPLOAD" => $roles,
"ISDOWNLOAD" => $roles,
"STATUS" => $roles,
'STATUS' => ['use' => '사용', 'unuse' => '사용않함'],
];