Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
2418 lars 1
<?php
2
/**
3
 * System messages translation for CodeIgniter(tm)
4
 *
5
 * @author	CodeIgniter community
6
 * @copyright	Copyright (c) 2014-2018, British Columbia Institute of Technology (http://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'] = '無法移動檔案,請檢查目標資料夾是否存在';