diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-01-22 20:46:36 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-01-22 20:46:36 +0100 |
commit | 1487f8c96493cac4aa8fb440fb829e20231a6053 (patch) | |
tree | 3f013e8e37f02ea6fe3ec935a2c78a0992cde0b2 /system/language/english/validation_lang.php | |
parent | 22cd38b2752cff83a07a12ff0662c3c841933e53 (diff) |
added a language key for the integer validation rule
Diffstat (limited to 'system/language/english/validation_lang.php')
-rw-r--r-- | system/language/english/validation_lang.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/language/english/validation_lang.php b/system/language/english/validation_lang.php index 1ca67c0fb..1e9ec2c1b 100644 --- a/system/language/english/validation_lang.php +++ b/system/language/english/validation_lang.php @@ -12,6 +12,7 @@ $lang['alpha'] = "The %s field may only contain alphabetical characters."; $lang['alpha_numeric'] = "The %s field may only contain alpha-numeric characters.";
$lang['alpha_dash'] = "The %s field may only contain alpha-numeric characters, underscores, and dashes.";
$lang['numeric'] = "The %s field must contain a number.";
+$lang['integer'] = "The %s field must contain an integer.";
$lang['matches'] = "The %s field does not match the %s field.";
?>
\ No newline at end of file |