Phil Sturgeon | 63df37d | 2011-05-09 21:14:37 +0100 | [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 | d4eec9f | 2012-12-14 11:07:13 +0200 | [diff] [blame] | 29 | $lang['form_validation_required'] = 'The {field} field is required.'; |
| 30 | $lang['form_validation_isset'] = 'The {field} field must have a value.'; |
Sajan Parikh | 9c0b890 | 2013-02-02 08:56:35 -0600 | [diff] [blame^] | 31 | $lang['form_validation_valid_email'] = 'The {field} field must contain a valid email address.'; |
| 32 | $lang['form_validation_valid_emails'] = 'The {field} field must contain all valid email addresses.'; |
Andrey Andreev | d4eec9f | 2012-12-14 11:07:13 +0200 | [diff] [blame] | 33 | $lang['form_validation_valid_url'] = 'The {field} field must contain a valid URL.'; |
| 34 | $lang['form_validation_valid_ip'] = 'The {field} field must contain a valid IP.'; |
| 35 | $lang['form_validation_min_length'] = 'The {field} field must be at least {param} characters in length.'; |
| 36 | $lang['form_validation_max_length'] = 'The {field} field cannot exceed {param} characters in length.'; |
Sajan Parikh | 9c0b890 | 2013-02-02 08:56:35 -0600 | [diff] [blame^] | 37 | $lang['form_validation_exact_length'] = 'The {field} field must be exactly {param} characters in length.'; |
Andrey Andreev | d4eec9f | 2012-12-14 11:07:13 +0200 | [diff] [blame] | 38 | $lang['form_validation_alpha'] = 'The {field} field may only contain alphabetical characters.'; |
Sajan Parikh | 9c0b890 | 2013-02-02 08:56:35 -0600 | [diff] [blame^] | 39 | $lang['form_validation_alpha_numeric'] = 'The {field} field may only contain alpha-numeric characters.'; |
| 40 | $lang['form_validation_alpha_numeric_spaces'] = 'The {field} field may only contain alpha-numeric characters and spaces.'; |
Andrey Andreev | d4eec9f | 2012-12-14 11:07:13 +0200 | [diff] [blame] | 41 | $lang['form_validation_alpha_dash'] = 'The {field} field may only contain alpha-numeric characters, underscores, and dashes.'; |
| 42 | $lang['form_validation_numeric'] = 'The {field} field must contain only numbers.'; |
| 43 | $lang['form_validation_is_numeric'] = 'The {field} field must contain only numeric characters.'; |
| 44 | $lang['form_validation_integer'] = 'The {field} field must contain an integer.'; |
Sajan Parikh | 9c0b890 | 2013-02-02 08:56:35 -0600 | [diff] [blame^] | 45 | $lang['form_validation_regex_match'] = 'The {field} field is not in the correct format.'; |
Andrey Andreev | d4eec9f | 2012-12-14 11:07:13 +0200 | [diff] [blame] | 46 | $lang['form_validation_matches'] = 'The {field} field does not match the {param} field.'; |
| 47 | $lang['form_validation_differs'] = 'The {field} field must differ from the {param} field.'; |
| 48 | $lang['form_validation_is_unique'] = 'The {field} field must contain a unique value.'; |
| 49 | $lang['form_validation_is_natural'] = 'The {field} field must only contain digits.'; |
| 50 | $lang['form_validation_is_natural_no_zero'] = 'The {field} field must only contain digits and must be greater than zero.'; |
| 51 | $lang['form_validation_decimal'] = 'The {field} field must contain a decimal number.'; |
| 52 | $lang['form_validation_less_than'] = 'The {field} field must contain a number less than {param}.'; |
| 53 | $lang['form_validation_less_than_equal_to'] = 'The {field} field must contain a number less than or equal to {param}.'; |
| 54 | $lang['form_validation_greater_than'] = 'The {field} field must contain a number greater than {param}.'; |
| 55 | $lang['form_validation_greater_than_equal_to'] = 'The {field} field must contain a number greater than or equal to {param}.'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 56 | |
| 57 | /* End of file form_validation_lang.php */ |
vkeranov | 4a6bc33 | 2012-07-12 11:14:33 +0300 | [diff] [blame] | 58 | /* Location: ./system/language/english/form_validation_lang.php */ |