用户
 找回密码
 入住 CI 中国社区
搜索
查看: 8367|回复: 7
收起左侧

CI框架如何把错误提示改成中文?

[复制链接]
发表于 2012-9-25 17:17:03 | 显示全部楼层 |阅读模式
CI框架如何把表单验证  还有文件上传类的 错误提示改成中文显示呢?求教
发表于 2012-9-25 18:17:23 | 显示全部楼层
发表于 2012-9-25 23:05:02 | 显示全部楼层
CI语言包可以加个hook
PHP复制代码
 
/**
 * 定义 Cier小站针对cier_lang 的 i18n 函数
 * @example
 * $author = __('ci_author');
 * $ci_timestamp = __('ci_timestamp',array(':now' => date(config_item('log_date_format'))));
 */

if ( ! function_exists('__'))
{
    function __($string, array $values = NULL, $lang = NULL)
    {  
        $LANG =& load_class('Lang', 'core');
        $LANG->load('cier');
        $string = $LANG->line($string);
 
        return empty($values) ? $string : strtr($string, $values);
    }  
}
 
/* End of file Common.php */
/* Location: ./system/core/Common.php */
//cier_lang.php
$lang['cier_author'] = 'billzhao';
$lang['cier_timestamp'] = '当前时间 :now';
 
复制代码
发表于 2014-7-10 11:57:54 | 显示全部楼层
Hex 发表于 2012-9-25 18:17
下载语言包 http://codeigniter.org.cn/forums/thread-11803-1-1.html

放到哪里?
发表于 2014-7-10 13:53:55 | 显示全部楼层

放到 appliication/lanaguage/chinese 里,chinese 不喜欢可以改成其他目录名,然后在 application/config/config.php 里指定使用 chinese 语言即可,默认是 english。

发表于 2014-7-14 08:29:24 | 显示全部楼层
已经ok了,谢谢
发表于 2014-8-6 10:29:38 | 显示全部楼层
发表于 2014-8-27 14:07:42 | 显示全部楼层
导入中文错误提示是乱码啊

本版积分规则