当前位置: 首页 > 工具软件 > Zarafa > 使用案例 >

zarafa-webaccess 更改默认语言和颜色主题

齐俊贤
2023-12-01

1.默认语言改为中文:

        if (isset($_ENV['LANG']) && $_ENV['LANG']!="C"){
                define('LANG', $_ENV["LANG"]); // This means the server environment language determines the web client language.
        }else{
        //      define('LANG', 'en_EN'); // default fallback language
                define('LANG', 'zh_CN.UTF-8');
        }

2.默认颜色主题改为经典:

       define("THEME_COLOR", "classic");


 类似资料: