shoppingmallv2/app/Language/ko/Category.php
2023-08-04 10:39:28 +09:00

33 lines
998 B
PHP

<?php
$roles = [
'guest' => '비회원', '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' => '사용않함'],
];