servermgrv2/app/Language/ko/BoardConfig.php
2023-08-03 17:40:47 +09:00

33 lines
986 B
PHP

<?php
$roles = [
'user' => '일반회원', 'vip' => 'VIP회원',
'bronze' => '일반판매자', 'silver' => '고급판매자', 'gold' => '파워리셀러',
'manager' => '관리자', 'cloudflare' => "Cloudflare관리자", 'director' => '감독자', 'master' => "마스터",
];
return [
'title' => "게시판설정 정보",
'label' => [
'uid' => "번호",
'name' => "게시판제목",
'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' => '사용않함'],
];