mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2026-06-08 04:48:10 +08:00
35 lines
1.3 KiB
PHP
35 lines
1.3 KiB
PHP
<?php
|
|
|
|
// +----------------------------------------------------------------------
|
|
// | Center Plugin for ThinkAdmin
|
|
// +----------------------------------------------------------------------
|
|
// | 版权所有 2014~2025 ThinkAdmin [ thinkadmin.top ]
|
|
// +----------------------------------------------------------------------
|
|
// | 官方网站: https://thinkadmin.top
|
|
// +----------------------------------------------------------------------
|
|
// | 开源协议 ( https://mit-license.org )
|
|
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
|
// +----------------------------------------------------------------------
|
|
|
|
$extra = [];
|
|
|
|
return array_merge($extra, [
|
|
// 插件管理
|
|
'管理插件' => 'Manage Plugin',
|
|
'取消默认' => 'Cancel Default',
|
|
'设为默认' => 'Set as Default',
|
|
'未配置菜单' => 'Menu Not Configured',
|
|
'无记录' => 'No Records',
|
|
|
|
// 用户菜单(与 think-plugs-admin 共享)
|
|
'基本资料' => 'Basic Information',
|
|
'安全设置' => 'Security Setting',
|
|
'缓存加速' => 'Cache Acceleration',
|
|
'清理缓存' => 'Clean Cache',
|
|
'配色方案' => 'Color Scheme',
|
|
'退出登录' => 'Logout',
|
|
'确定要退出登录吗?' => 'Are you sure you want to logout?',
|
|
'立即登录' => 'Login',
|
|
]);
|
|
|