kalcaddle / kodbox

kodbox is a file manager for web. It is a newly designed product based on kodexplorer. It is also a web code editor, which allows you to develop websites directly within the web browser.You can run kodbox either online or locally,on Linux, Windows or Mac based platforms
https://kodcloud.com
2.18k stars 373 forks source link

Update I18n.class.php #206

Closed jymusic0663 closed 11 months ago

jymusic0663 commented 1 year ago

增加扩展全局语言包功能

kalcaddle commented 11 months ago

推荐直接在 config/setting_user.php 中覆盖设置即可

// 全部语言覆盖或扩展
I18n::set(array(
    "explorer.toolbar.rootPath" =>'个人网盘',
    "explorer.toolbar.fav"  => "我的收藏", //收藏夹
));

// 指定语言覆盖或扩展
I18n::init();$lang = I18n::$langType;
if($lang == 'zh-CN'){
    I18n::set(array(
        "explorer.toolbar.rootPath" =>'个人网盘',
        "explorer.toolbar.fav"      => "我的收藏", //收藏夹
    ));
}