| 2418 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* System messages translation for CodeIgniter(tm)
|
|
|
4 |
*
|
|
|
5 |
* @author CodeIgniter community
|
|
|
6 |
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
|
|
7 |
* @license http://opensource.org/licenses/MIT MIT License
|
|
|
8 |
* @link https://codeigniter.com
|
|
|
9 |
*/
|
|
|
10 |
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
11 |
|
|
|
12 |
$lang['ftp_no_connection'] = '无法找到一个有效的连接 ID。在执行任何文件例程时请确保已经连接成功。';
|
|
|
13 |
$lang['ftp_unable_to_connect'] = '无法使用提供的主机名连接到 FTP 服务器。';
|
|
|
14 |
$lang['ftp_unable_to_login'] = '无法登录到 FTP 服务器,请检查用户名及密码是否正确。';
|
|
|
15 |
$lang['ftp_unable_to_mkdir'] = '无法创建指定的目录。';
|
|
|
16 |
$lang['ftp_unable_to_changedir'] = '无法改变目录。';
|
|
|
17 |
$lang['ftp_unable_to_chmod'] = '无法设置文件权限,检查文件路径或用户权限。';
|
|
|
18 |
$lang['ftp_unable_to_upload'] = '无法上传指定的文件,检查上传路径或用户权限。';
|
|
|
19 |
$lang['ftp_unable_to_download'] = '无法下载指定的文件,检查下载路径或用户权限。';
|
|
|
20 |
$lang['ftp_no_source_file'] = '无法找到指定的源文件,检查文件路径或用户权限。';
|
|
|
21 |
$lang['ftp_unable_to_rename'] = '无法重命名文件。';
|
|
|
22 |
$lang['ftp_unable_to_delete'] = '无法删除文件。';
|
|
|
23 |
$lang['ftp_unable_to_move'] = '无法移动文件,检查目的目录是否存在。';
|