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

7 years ago
  1. <?php
  2. /**
  3. * System messages translation for CodeIgniter(tm)
  4. *
  5. * @author CodeIgniter community
  6. * @author HyeongJoo Kwon
  7. * @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://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. $lang['upload_userfile_not_set'] = '전송된 데이터가 없습니다. FILE 필드명을 확인하세요.';
  13. $lang['upload_file_exceeds_limit'] = '서버에 설정된 업로드 용량을 초과하였습니다.';
  14. $lang['upload_file_exceeds_form_limit'] = '설정된 업로드 용량을 초과하였습니다.';
  15. $lang['upload_file_partial'] = '파일의 일부만 전송되었습니다.';
  16. $lang['upload_no_temp_directory'] = '임시폴더를 찾을 수 없습니다.';
  17. $lang['upload_unable_to_write_file'] = '디스크에 쓰기를 실패했습니다.';
  18. $lang['upload_stopped_by_extension'] = '지원되지 않는 확장자입니다.';
  19. $lang['upload_no_file_selected'] = '선택된 파일이 없습니다.';
  20. $lang['upload_invalid_filetype'] = '허용된 파일 확장자가 아닙니다.';
  21. $lang['upload_invalid_filesize'] = '허용된 용량을 초과하였습니다.';
  22. $lang['upload_invalid_dimensions'] = '허용된 이미지 크기가 아닙니다.';
  23. $lang['upload_destination_error'] = '업로드 하였으나, 쓰기에 실패했습니다.';
  24. $lang['upload_no_filepath'] = '업로드 경로를 지정하여야 합니다.';
  25. $lang['upload_no_file_types'] = '허용할 파일형식을 지정하세요.';
  26. $lang['upload_bad_filename'] = '이미 존재하는 파일입니다.';
  27. $lang['upload_not_writable'] = '업로드 폴더에 파일을 작성할 수 없습니다.';