|
发表于 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';
复制代码 |
|