diff options
author | Eric Roberts <eric@cryode.com> | 2012-04-15 01:04:17 +0200 |
---|---|---|
committer | Eric Roberts <eric@cryode.com> | 2012-04-15 01:04:17 +0200 |
commit | 0b05705c52c3bca7f9b3aee657c888e8ad1ff422 (patch) | |
tree | 8c8f816e1b905bec2db5f84730babd6655f82322 /system/language/english | |
parent | b4a294d1f2d93b70059c0c40cf2d32760d3e4bc4 (diff) |
Combine this feature with Fix Issue #935 in another pull request.
Diffstat (limited to 'system/language/english')
-rw-r--r-- | system/language/english/form_validation_lang.php | 4 |
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 703f2e7bf..3d77e5eda 100644 --- a/system/language/english/form_validation_lang.php +++ b/system/language/english/form_validation_lang.php @@ -43,8 +43,8 @@ $lang['integer'] = 'The {field} field must contain an integer.'; $lang['regex_match'] = 'The {field} field is not in the correct format.'; $lang['matches'] = 'The {field} field does not match the {param} field.'; $lang['is_unique'] = 'The {field} field must contain a unique value.'; -$lang['is_natural'] = 'The {field} field must contain only positive numbers.'; -$lang['is_natural_no_zero'] = 'The {field} field must contain a number greater than zero.'; +$lang['is_natural'] = 'The {field} field must contain an ordinary number greater or equal to zero.'; +$lang['is_natural_no_zero'] = 'The {field} field must contain an ordinary number greater than zero.'; $lang['decimal'] = 'The {field} field must contain a decimal number.'; $lang['less_than'] = 'The {field} field must contain a number less than {param}.'; $lang['greater_than'] = 'The {field} field must contain a number greater than {param}.'; |