| 2418 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* System messages translation for CodeIgniter(tm)
|
|
|
4 |
*
|
|
|
5 |
* @author CodeIgniter community
|
|
|
6 |
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
|
|
7 |
* @license http://opensource.org/licenses/MIT MIT License
|
|
|
8 |
* @link https://codeigniter.com
|
|
|
9 |
*/
|
|
|
10 |
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
11 |
|
|
|
12 |
$lang['migration_none_found'] = '不需迁移。 ';
|
|
|
13 |
$lang['migration_not_found'] = '无法根据版本号找到迁移方法: %s。';
|
|
|
14 |
$lang['migration_sequence_gap'] = '版本迁移存在鸿沟:%s。';
|
|
|
15 |
$lang['migration_multiple_version'] = '多个迁移对应同一版本号:%s。';
|
|
|
16 |
$lang['migration_class_doesnt_exist'] = '无法找到迁移类 "%s"。';
|
|
|
17 |
$lang['migration_missing_up_method'] = '无法找到迁移类 "%s" 中的 "up" 方法。';
|
|
|
18 |
$lang['migration_missing_down_method'] = '无法找到迁移类 "%s" 中的 " 方法。';
|
|
|
19 |
$lang['migration_invalid_filename'] = '无效的迁移文件名:"%s"。';
|