This commit is contained in:
19
application/language/chinese/migration_lang.php
Normal file
19
application/language/chinese/migration_lang.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/**
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* @author CodeIgniter community
|
||||
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['migration_none_found'] = '不需迁移。 ';
|
||||
$lang['migration_not_found'] = '无法根据版本号找到迁移方法: %s。';
|
||||
$lang['migration_sequence_gap'] = '版本迁移存在鸿沟:%s。';
|
||||
$lang['migration_multiple_version'] = '多个迁移对应同一版本号:%s。';
|
||||
$lang['migration_class_doesnt_exist'] = '无法找到迁移类 "%s"。';
|
||||
$lang['migration_missing_up_method'] = '无法找到迁移类 "%s" 中的 "up" 方法。';
|
||||
$lang['migration_missing_down_method'] = '无法找到迁移类 "%s" 中的 " 方法。';
|
||||
$lang['migration_invalid_filename'] = '无效的迁移文件名:"%s"。';
|
||||
Reference in New Issue
Block a user