Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1 | <?php |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame^] | 2 | /** |
| 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 Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 27 | |
Phil Sturgeon | 1974165 | 2011-04-02 12:29:38 +0100 | [diff] [blame] | 28 | $lang['ftp_no_connection'] = "Unable to locate a valid connection ID. Please make sure you are connected before peforming any file routines."; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 29 | $lang['ftp_unable_to_connect'] = "Unable to connect to your FTP server using the supplied hostname."; |
Phil Sturgeon | 1974165 | 2011-04-02 12:29:38 +0100 | [diff] [blame] | 30 | $lang['ftp_unable_to_login'] = "Unable to login to your FTP server. Please check your username and password."; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 31 | $lang['ftp_unable_to_makdir'] = "Unable to create the directory you have specified."; |
| 32 | $lang['ftp_unable_to_changedir'] = "Unable to change directories."; |
Phil Sturgeon | 1974165 | 2011-04-02 12:29:38 +0100 | [diff] [blame] | 33 | $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 Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 37 | $lang['ftp_unable_to_rename'] = "Unable to rename the file."; |
| 38 | $lang['ftp_unable_to_delete'] = "Unable to delete the file."; |
Phil Sturgeon | 1974165 | 2011-04-02 12:29:38 +0100 | [diff] [blame] | 39 | $lang['ftp_unable_to_move'] = "Unable to move the file. Please make sure the destination directory exists."; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 40 | |
Derek Jones | a3ffbbb | 2008-05-11 18:18:29 +0000 | [diff] [blame] | 41 | |
| 42 | /* End of file ftp_lang.php */ |
| 43 | /* Location: ./system/language/english/ftp_lang.php */ |