| 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['ftp_no_connection'] = 'FTP connection에 연결할 수 없습니다. 계정정보를 확인하거나 서버상태를 확인하세요.';
|
|
|
14 |
$lang['ftp_unable_to_connect'] = '입력하신 호스트에 접속할 수 없습니다.';
|
|
|
15 |
$lang['ftp_unable_to_login'] = 'FTP 서버에 로그인 할 수 없습니다. 계정정보를 확인하세요.';
|
|
|
16 |
$lang['ftp_unable_to_mkdir'] = '디렉토리를 생성할 수 없습니다.';
|
|
|
17 |
$lang['ftp_unable_to_changedir'] = '디렉토리를 변경할 수 없습니다.';
|
|
|
18 |
$lang['ftp_unable_to_chmod'] = '파일권한을 변경할 수 없습니다. 경로를 확인하세요.';
|
|
|
19 |
$lang['ftp_unable_to_upload'] = '업로드를 할 수 없습니다. 경로를 확인하세요.';
|
|
|
20 |
$lang['ftp_unable_to_download'] = '다운로드를 할 수 없습니다. 경로를 확인하세요.';
|
|
|
21 |
$lang['ftp_no_source_file'] = '원본파일을 찾을 수 없습니다. 경로를 확인하세요.';
|
|
|
22 |
$lang['ftp_unable_to_rename'] = '파일명을 변경할 수 없습니다.';
|
|
|
23 |
$lang['ftp_unable_to_delete'] = '파일을 삭제할 수 없습니다.';
|
|
|
24 |
$lang['ftp_unable_to_move'] = '파일을 이동할 수 없습니다. 경로를 확인하세요.';
|