You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1.2 KiB
20 lines
1.2 KiB
<?php
|
|
/**
|
|
* System messages translation for CodeIgniter(tm)
|
|
*
|
|
* @author CodeIgniter community
|
|
* @author HyeongJoo Kwon
|
|
* @copyright Copyright (c) 2014 - 2017, 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" 클래스의 "down" 메소드를 찾을 수 없습니다.';
|
|
$lang['migration_invalid_filename'] = '마이그레이션 "%s"은(는) 유효하지 않은 파일입니다.';
|