Files
opensourcepos/application/language/korean/migration_lang.php
2016-08-18 13:33:01 +02:00

21 lines
1.2 KiB
PHP

<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @author HyeongJoo Kwon
* @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link http://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"은(는) 유효하지 않은 파일입니다.';