diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-03-17 10:48:51 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-03-17 10:48:51 +0100 |
commit | ee8a712b10b517a90f03ac858312a82e0fb5d492 (patch) | |
tree | 93f68bd05b770c206b25d7486c8811f864954156 /system/language/english | |
parent | 82f9b1571370e8d87a0cbd4ff16647a6eccf3c6e (diff) |
Added form_validation_lang entries for decimal, greater_than, less_than.
Diffstat (limited to 'system/language/english')
-rw-r--r-- | system/language/english/form_validation_lang.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/system/language/english/form_validation_lang.php b/system/language/english/form_validation_lang.php index b01885091..3f2409007 100644 --- a/system/language/english/form_validation_lang.php +++ b/system/language/english/form_validation_lang.php @@ -19,6 +19,9 @@ $lang['regex_match'] = "The %s field is not in the correct format."; $lang['matches'] = "The %s field does not match the %s field."; $lang['is_natural'] = "The %s field must contain only positive numbers."; $lang['is_natural_no_zero'] = "The %s field must contain a number greater than zero."; +$lang['decimal'] = "The %s field must contain a decimal number."; +$lang['less_than'] = "The %s field must contain a number less than %s."; +$lang['greater_than'] = "The %s field must contain a number greater than %s."; /* End of file form_validation_lang.php */ |