summaryrefslogtreecommitdiffstats
path: root/system/language/english/form_validation_lang.php
diff options
context:
space:
mode:
authorNick Busey <nickabusey@gmail.com>2012-02-07 01:55:58 +0100
committerNick Busey <nickabusey@gmail.com>2012-02-07 01:55:58 +0100
commitc1931667cbc614a704f536beb882931af82241cd (patch)
treed38f22b603d4d1e179d539644ef5857f3d1c55e1 /system/language/english/form_validation_lang.php
parent98c347de9f62a3427170f9f73a692d159765e8cf (diff)
Renaming equal_to_greater_than to greater_than_equal_to, equal_to_less_than to less_than_equal_to
Diffstat (limited to 'system/language/english/form_validation_lang.php')
-rw-r--r--system/language/english/form_validation_lang.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/language/english/form_validation_lang.php b/system/language/english/form_validation_lang.php
index 2ee2cb9dd..7fa6934f5 100644
--- a/system/language/english/form_validation_lang.php
+++ b/system/language/english/form_validation_lang.php
@@ -47,9 +47,9 @@ $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['equal_to_less_than'] = "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 equal to or less than %s.";
$lang['greater_than'] = "The %s field must contain a number greater than %s.";
-$lang['equal_to_greater_than'] = "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 equal to or greater than %s.";
/* End of file form_validation_lang.php */