mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-01-06 21:18:10 +00:00
28 lines
1.0 KiB
PHP
28 lines
1.0 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | Niucloud-admin 企业快速开发的多应用管理平台
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网址:https://www.niucloud.com
|
||
// +----------------------------------------------------------------------
|
||
// | niucloud团队 版权所有 开源版本可自由商用
|
||
// +----------------------------------------------------------------------
|
||
// | Author: Niucloud Team
|
||
// +----------------------------------------------------------------------
|
||
|
||
/**
|
||
* 插件枚举语言
|
||
*/
|
||
return [
|
||
'dict_diy' => [
|
||
'page_hello_world_index' => 'hello 首页',
|
||
'page_hello_world_info' => 'hello 信息',
|
||
'hello_world_title' => 'hello world',
|
||
'hello_world_link' => 'hello world链接',
|
||
'hello_world_index' => 'hello world index 插件',
|
||
'hello_world_info' => 'hello world info 插件'
|
||
],
|
||
'dict_site_layout' => [
|
||
'hellow_world' => '你好'
|
||
]
|
||
];
|