diff options
author | John Crepezzi <john.crepezzi@gmail.com> | 2012-02-08 01:06:46 +0100 |
---|---|---|
committer | John Crepezzi <john.crepezzi@gmail.com> | 2012-02-08 01:06:57 +0100 |
commit | d5c0172e02b99278f4928897c1489cd628a50e2d (patch) | |
tree | ebc31ebcc72d33bd2e782228919c8a7fc57591c5 /system/language | |
parent | c1931667cbc614a704f536beb882931af82241cd (diff) |
Fix #1009 documentation fixed
Diffstat (limited to 'system/language')
-rw-r--r-- | system/language/english/form_validation_lang.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/language/english/form_validation_lang.php b/system/language/english/form_validation_lang.php index 7fa6934f5..ea589618a 100644 --- a/system/language/english/form_validation_lang.php +++ b/system/language/english/form_validation_lang.php @@ -47,10 +47,10 @@ $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['less_than_equal_to'] = "The %s field must contain a number equal to or less than %s."; +$lang['less_than_equal_to'] = "The %s field must contain a number less than or equal to %s."; $lang['greater_than'] = "The %s field must contain a number greater than %s."; -$lang['greater_than_equal_to'] = "The %s field must contain a number equal to or greater than %s."; +$lang['greater_than_equal_to'] = "The %s field must contain a number greater than or equal to %s."; /* End of file form_validation_lang.php */ -/* Location: ./system/language/english/form_validation_lang.php */
\ No newline at end of file +/* Location: ./system/language/english/form_validation_lang.php */ |