blob: e934a19d9a5f5af5a2f0c8ee43774250499183cf [file] [log] [blame]
Derek Allard2067d1a2008-11-13 22:59:24 +00001<?php
Derek Jonesf4a4bd82011-10-20 12:18:42 -05002/**
3 * CodeIgniter
4 *
5 * An open source application development framework for PHP 5.1.6 or newer
6 *
7 * NOTICE OF LICENSE
8 *
9 * Licensed under the Open Software License version 3.0
10 *
11 * 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
21 * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc. (http://ellislab.com/)
22 * @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 */
Derek Allard2067d1a2008-11-13 22:59:24 +000027
Phil Sturgeon19741652011-04-02 12:29:38 +010028$lang['ftp_no_connection'] = "Unable to locate a valid connection ID. Please make sure you are connected before peforming any file routines.";
Derek Allard2067d1a2008-11-13 22:59:24 +000029$lang['ftp_unable_to_connect'] = "Unable to connect to your FTP server using the supplied hostname.";
Phil Sturgeon19741652011-04-02 12:29:38 +010030$lang['ftp_unable_to_login'] = "Unable to login to your FTP server. Please check your username and password.";
Derek Allard2067d1a2008-11-13 22:59:24 +000031$lang['ftp_unable_to_makdir'] = "Unable to create the directory you have specified.";
32$lang['ftp_unable_to_changedir'] = "Unable to change directories.";
Phil Sturgeon19741652011-04-02 12:29:38 +010033$lang['ftp_unable_to_chmod'] = "Unable to set file permissions. Please check your path. Note: This feature is only available in PHP 5 or higher.";
34$lang['ftp_unable_to_upload'] = "Unable to upload the specified file. Please check your path.";
35$lang['ftp_unable_to_download'] = "Unable to download the specified file. Please check your path.";
36$lang['ftp_no_source_file'] = "Unable to locate the source file. Please check your path.";
Derek Allard2067d1a2008-11-13 22:59:24 +000037$lang['ftp_unable_to_rename'] = "Unable to rename the file.";
38$lang['ftp_unable_to_delete'] = "Unable to delete the file.";
Phil Sturgeon19741652011-04-02 12:29:38 +010039$lang['ftp_unable_to_move'] = "Unable to move the file. Please make sure the destination directory exists.";
Derek Allard2067d1a2008-11-13 22:59:24 +000040
Derek Jonesa3ffbbb2008-05-11 18:18:29 +000041
42/* End of file ftp_lang.php */
43/* Location: ./system/language/english/ftp_lang.php */