40 lines
782 B
PHP
40 lines
782 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'columnName' => [
|
|
'name' => '名稱',
|
|
],
|
|
'account' => [
|
|
'title' => '帳戶',
|
|
'user' => [
|
|
'title' => '會員管理',
|
|
],
|
|
'role' => [
|
|
'title' => '角色管理',
|
|
],
|
|
'permission' => [
|
|
'title' => '權限管理',
|
|
],
|
|
],
|
|
'news' => [
|
|
'title' => '新聞管理',
|
|
'catalog' => [
|
|
'title' => '新聞分類',
|
|
],
|
|
'article' => [
|
|
'title' => '文章管理',
|
|
],
|
|
],
|
|
'event' => [
|
|
'title' => '活動管理',
|
|
'catalog' => [
|
|
'title' => '活動分類',
|
|
],
|
|
'article' => [
|
|
'title' => '活動管理',
|
|
],
|
|
],
|
|
];
|