Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
2418 lars 1
<?php
2
/**
3
 * System messages translation for CodeIgniter(tm)
4
 *
5
 * @author	CodeIgniter community
6
 * @copyright	Copyright (c) 2014-2018, British Columbia Institute of Technology (http://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"';