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 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 6 | * |
| 7 | * NOTICE OF LICENSE |
Andrey Andreev | 34ed3f3 | 2012-06-08 00:24:54 +0300 | [diff] [blame] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Andrey Andreev | 34ed3f3 | 2012-06-08 00:24:54 +0300 | [diff] [blame] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 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 |
Andrey Andreev | 80500af | 2013-01-01 08:16:53 +0200 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 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 | */ |
Andrey Andreev | c5536aa | 2012-11-01 17:33:58 +0200 | [diff] [blame] | 27 | defined('BASEPATH') OR exit('No direct script access allowed'); |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 28 | |
Andrey Andreev | b4c6218 | 2014-01-03 17:39:26 +0200 | [diff] [blame^] | 29 | $lang['ftp_no_connection'] = 'Unable to locate a valid connection ID. Please make sure you are connected before peforming any file routines.'; |
Alex Bilbie | 0875d69 | 2012-07-15 18:56:48 +0100 | [diff] [blame] | 30 | $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 Andreev | b4c6218 | 2014-01-03 17:39:26 +0200 | [diff] [blame^] | 32 | $lang['ftp_unable_to_mkdir'] = 'Unable to create the directory you have specified.'; |
Alex Bilbie | 0875d69 | 2012-07-15 18:56:48 +0100 | [diff] [blame] | 33 | $lang['ftp_unable_to_changedir'] = 'Unable to change directories.'; |
Andrey Andreev | b4c6218 | 2014-01-03 17:39:26 +0200 | [diff] [blame^] | 34 | $lang['ftp_unable_to_chmod'] = 'Unable to set file permissions. Please check your path.'; |
Alex Bilbie | 0875d69 | 2012-07-15 18:56:48 +0100 | [diff] [blame] | 35 | $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 Andreev | b4c6218 | 2014-01-03 17:39:26 +0200 | [diff] [blame^] | 37 | $lang['ftp_no_source_file'] = 'Unable to locate the source file. Please check your path.'; |
Alex Bilbie | 0875d69 | 2012-07-15 18:56:48 +0100 | [diff] [blame] | 38 | $lang['ftp_unable_to_rename'] = 'Unable to rename the file.'; |
| 39 | $lang['ftp_unable_to_delete'] = 'Unable to delete the file.'; |
Andrey Andreev | b4c6218 | 2014-01-03 17:39:26 +0200 | [diff] [blame^] | 40 | $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] | 41 | |
Derek Jones | a3ffbbb | 2008-05-11 18:18:29 +0000 | [diff] [blame] | 42 | /* End of file ftp_lang.php */ |
| 43 | /* Location: ./system/language/english/ftp_lang.php */ |