blob: 042ab55df18739df38c861a193a4bc3d966d2415 [file] [log] [blame]
Derek Allard2067d1a2008-11-13 22:59:24 +00001<?php
Derek Jonesf4a4bd82011-10-20 12:18:42 -05002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Jonesf4a4bd82011-10-20 12:18:42 -05006 *
7 * NOTICE OF LICENSE
Andrey Andreev34ed3f32012-06-08 00:24:54 +03008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev34ed3f32012-06-08 00:24:54 +030010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
19 * @package CodeIgniter
20 * @author EllisLab Dev Team
Andrey Andreev80500af2013-01-01 08:16:53 +020021 * @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
23 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
Andrey Andreevb4c62182014-01-03 17:39:26 +020029$lang['ftp_no_connection'] = 'Unable to locate a valid connection ID. Please make sure you are connected before peforming any file routines.';
Alex Bilbie0875d692012-07-15 18:56:48 +010030$lang['ftp_unable_to_connect'] = 'Unable to connect to your FTP server using the supplied hostname.';
31$lang['ftp_unable_to_login'] = 'Unable to login to your FTP server. Please check your username and password.';
Andrey Andreevb4c62182014-01-03 17:39:26 +020032$lang['ftp_unable_to_mkdir'] = 'Unable to create the directory you have specified.';
Alex Bilbie0875d692012-07-15 18:56:48 +010033$lang['ftp_unable_to_changedir'] = 'Unable to change directories.';
Andrey Andreevb4c62182014-01-03 17:39:26 +020034$lang['ftp_unable_to_chmod'] = 'Unable to set file permissions. Please check your path.';
Alex Bilbie0875d692012-07-15 18:56:48 +010035$lang['ftp_unable_to_upload'] = 'Unable to upload the specified file. Please check your path.';
36$lang['ftp_unable_to_download'] = 'Unable to download the specified file. Please check your path.';
Andrey Andreevb4c62182014-01-03 17:39:26 +020037$lang['ftp_no_source_file'] = 'Unable to locate the source file. Please check your path.';
Alex Bilbie0875d692012-07-15 18:56:48 +010038$lang['ftp_unable_to_rename'] = 'Unable to rename the file.';
39$lang['ftp_unable_to_delete'] = 'Unable to delete the file.';
Andrey Andreevb4c62182014-01-03 17:39:26 +020040$lang['ftp_unable_to_move'] = 'Unable to move the file. Please make sure the destination directory exists.';
Derek Allard2067d1a2008-11-13 22:59:24 +000041
Derek Jonesa3ffbbb2008-05-11 18:18:29 +000042/* End of file ftp_lang.php */
43/* Location: ./system/language/english/ftp_lang.php */