本帖最后由 mytharcher 于 2013-11-21 16:19 编辑
系统提示里的语言终于找到一个包,现在传到github上了,有要用的可以来看看。
https://github.com/mytharcher/CI-Chinese
安装方式
在你的CI项目文件夹用命令行clone仓库:
$ cd path/to/your/ci-project
$ git clone https://github.com/mytharcher/CI-Chinese.git system/language/zh-CN
或者也可以使用git子模块来管理:
$ cd path/to/your/ci-project
$ git submodule add https://github.com/mytharcher/CI-Chinese.git system/language/zh-CN
然后在applicaion/config/config.php文件中找到:
$config['language'] = 'english';
改成:
$config['language'] = 'zh-cn';
|