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.
 
 
 
 
 
 

28 lines
1.7 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['upload_userfile_not_set'] = '전송된 데이터가 없습니다. FILE 필드명을 확인하세요.';
$lang['upload_file_exceeds_limit'] = '서버에 설정된 업로드 용량을 초과하였습니다.';
$lang['upload_file_exceeds_form_limit'] = '설정된 업로드 용량을 초과하였습니다.';
$lang['upload_file_partial'] = '파일의 일부만 전송되었습니다.';
$lang['upload_no_temp_directory'] = '임시폴더를 찾을 수 없습니다.';
$lang['upload_unable_to_write_file'] = '디스크에 쓰기를 실패했습니다.';
$lang['upload_stopped_by_extension'] = '지원되지 않는 확장자입니다.';
$lang['upload_no_file_selected'] = '선택된 파일이 없습니다.';
$lang['upload_invalid_filetype'] = '허용된 파일 확장자가 아닙니다.';
$lang['upload_invalid_filesize'] = '허용된 용량을 초과하였습니다.';
$lang['upload_invalid_dimensions'] = '허용된 이미지 크기가 아닙니다.';
$lang['upload_destination_error'] = '업로드 하였으나, 쓰기에 실패했습니다.';
$lang['upload_no_filepath'] = '업로드 경로를 지정하여야 합니다.';
$lang['upload_no_file_types'] = '허용할 파일형식을 지정하세요.';
$lang['upload_bad_filename'] = '이미 존재하는 파일입니다.';
$lang['upload_not_writable'] = '업로드 폴더에 파일을 작성할 수 없습니다.';