用户
 找回密码
 入住 CI 中国社区
搜索
楼主: 寻找动力
收起左侧

CodeIgniter2.1.0简体中文语言包

    [复制链接]
发表于 2012-5-31 09:40:12 | 显示全部楼层
只有migration_lang.php不翻译而已了
发表于 2012-8-7 08:35:12 | 显示全部楼层
不错。。支持啦
发表于 2012-8-7 10:35:39 | 显示全部楼层
支持。。。。。。。。。。。。。。
发表于 2012-8-7 16:41:48 | 显示全部楼层
HHO, 太棒了!
发表于 2012-8-17 00:24:02 | 显示全部楼层
顶顶顶~~~
发表于 2012-9-25 23:12:51 | 显示全部楼层
估计CIer【迁移】功能很少有哥使用
就补充一下 迁移的中文吧
PHP复制代码
 
$lang['migration_none_found'] = "没有发现任何 Migrations";
$lang['migration_not_found'] = "此 Migration 不存在";
$lang['migration_multiple_version'] = "多重 migrations 拥有相同的版本号码: %d";
$lang['migration_class_doesnt_exist'] = "Migration 类别 \"%s\" 不存在";
$lang['migration_missing_up_method'] = "Migration 类别 \"%s\" i缺少 'up' 方法";
$lang['migration_missing_down_method'] = "Migration 类别 \"%s\" 缺少 'down' 方法";
$lang['migration_invalid_filename'] = "Migration \"%s\" 包含无效的栏位名称";
 
复制代码

btw  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';
 
复制代码
发表于 2012-9-25 23:13:31 | 显示全部楼层
估计CIer【迁移】功能很少有哥使用
就补充一下 迁移的中文吧
PHP复制代码
 
$lang['migration_none_found'] = "没有发现任何 Migrations";
$lang['migration_not_found'] = "此 Migration 不存在";
$lang['migration_multiple_version'] = "多重 migrations 拥有相同的版本号码: %d";
$lang['migration_class_doesnt_exist'] = "Migration 类别 \"%s\" 不存在";
$lang['migration_missing_up_method'] = "Migration 类别 \"%s\" i缺少 'up' 方法";
$lang['migration_missing_down_method'] = "Migration 类别 \"%s\" 缺少 'down' 方法";
$lang['migration_invalid_filename'] = "Migration \"%s\" 包含无效的栏位名称";
 
复制代码

btw  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';
 
复制代码
发表于 2013-6-1 15:08:10 | 显示全部楼层
相当给力!!!!
发表于 2013-11-29 10:45:49 | 显示全部楼层
顶起,感谢楼主!
发表于 2014-2-18 16:13:45 | 显示全部楼层
  这个是好东西  正在找这个

本版积分规则