blob: 476123b065d96764c3eb3b250c0f9f288fe08653 [file] [log] [blame]
Phil Sturgeon63df37d2011-05-09 21:14:37 +01001<?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 Andreevd4eec9f2012-12-14 11:07:13 +020029$lang['form_validation_required'] = 'The {field} field is required.';
30$lang['form_validation_isset'] = 'The {field} field must have a value.';
Sajan Parikh9c0b8902013-02-02 08:56:35 -060031$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 Andreevd4eec9f2012-12-14 11:07:13 +020033$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 Parikh9c0b8902013-02-02 08:56:35 -060037$lang['form_validation_exact_length'] = 'The {field} field must be exactly {param} characters in length.';
Andrey Andreevd4eec9f2012-12-14 11:07:13 +020038$lang['form_validation_alpha'] = 'The {field} field may only contain alphabetical characters.';
Sajan Parikh9c0b8902013-02-02 08:56:35 -060039$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 Andreevd4eec9f2012-12-14 11:07:13 +020041$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 Parikh9c0b8902013-02-02 08:56:35 -060045$lang['form_validation_regex_match'] = 'The {field} field is not in the correct format.';
Andrey Andreevd4eec9f2012-12-14 11:07:13 +020046$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 Allard2067d1a2008-11-13 22:59:24 +000056
57/* End of file form_validation_lang.php */
vkeranov4a6bc332012-07-12 11:14:33 +030058/* Location: ./system/language/english/form_validation_lang.php */