mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-01-05 20:48:11 +00:00
24 lines
916 B
PHP
24 lines
916 B
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | Niucloud-admin 企业快速开发的saas管理平台
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网址:https://www.niucloud-admin.com
|
||
// +----------------------------------------------------------------------
|
||
// | niucloud团队 版权所有 开源版本可自由商用
|
||
// +----------------------------------------------------------------------
|
||
// | Author: Niucloud Team
|
||
// +----------------------------------------------------------------------
|
||
|
||
/**
|
||
* 插件枚举语言
|
||
*/
|
||
return [
|
||
'dict_diy' => [
|
||
'page_hello_world_index' => 'hello 首页',
|
||
'page_hello_world_info' => 'hello 信息',
|
||
'hello_world_link' => 'hello world链接',
|
||
'hello_world_index' => 'hello world index 插件',
|
||
'hello_world_info' => 'hello world info 插件'
|
||
]
|
||
];
|