You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
429 B
15 lines
429 B
4 years ago
|
<?php
|
||
|
// 基础模块配置文件
|
||
|
|
||
|
return [
|
||
|
//'配置项'=>'配置值'
|
||
|
'LANG_SWITCH_ON' => true, //开启语言包功能
|
||
|
'LANG_AUTO_DETECT' => true, // 自动侦测语言
|
||
|
'DEFAULT_LANG' => 'zh-cn', // 默认语言
|
||
|
'LANG_LIST' => 'en-us,zh-cn,zh-tw', //必须写可允许的语言列表
|
||
|
'VAR_LANGUAGE' => 'l', // 默认语言切换变量
|
||
|
];
|
||
|
|
||
|
|
||
|
|