| 2418 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* System messages translation for CodeIgniter(tm)
|
|
|
4 |
*
|
|
|
5 |
* @author CodeIgniter community
|
|
|
6 |
* @author HyeongJoo Kwon
|
|
|
7 |
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
|
|
8 |
* @license http://opensource.org/licenses/MIT MIT License
|
|
|
9 |
* @link https://codeigniter.com
|
|
|
10 |
*/
|
|
|
11 |
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
12 |
|
|
|
13 |
$lang['migration_none_found'] = '마이그레이션 파일을 찾을 수 없습니다.';
|
|
|
14 |
$lang['migration_not_found'] = '마이그레이션 버전정보가 없습니다: %s.';
|
|
|
15 |
$lang['migration_sequence_gap'] = '마이그레이션 시퀀스와 차이가 있습니다: %s.';
|
|
|
16 |
$lang['migration_multiple_version'] = '복수의 버전정보가 있습니다.: %s.';
|
|
|
17 |
$lang['migration_class_doesnt_exist'] = '마이그레이션 "%s" 클래스 파일을 찾을 수 없습니다.';
|
|
|
18 |
$lang['migration_missing_up_method'] = '마이그레이션 "%s" 클래스의 "up" 메소드를 찾을 수 없습니다.';
|
|
|
19 |
$lang['migration_missing_down_method'] = '마이그레이션 "%s" 클래스의 "down" 메소드를 찾을 수 없습니다.';
|
|
|
20 |
$lang['migration_invalid_filename'] = '마이그레이션 "%s"은(는) 유효하지 않은 파일입니다.';
|