Browse Source

Merge pull request #1706 from billmn/develop

Added "Not In" rule translation (fix issue #1701)
Taylor Otwell 11 years ago
parent
commit
b593b109f6
1 changed files with 2 additions and 1 deletions
  1. 2 1
      app/lang/en/validation.php

+ 2 - 1
app/lang/en/validation.php

@@ -35,6 +35,7 @@ return array(
 	"exists"          => "The selected :attribute is invalid.",
 	"exists"          => "The selected :attribute is invalid.",
 	"image"           => "The :attribute must be an image.",
 	"image"           => "The :attribute must be an image.",
 	"in"              => "The selected :attribute is invalid.",
 	"in"              => "The selected :attribute is invalid.",
+	"not_in"          => "The selected :attribute is invalid.",
 	"integer"         => "The :attribute must be an integer.",
 	"integer"         => "The :attribute must be an integer.",
 	"ip"              => "The :attribute must be a valid IP address.",
 	"ip"              => "The :attribute must be a valid IP address.",
 	"max"             => array(
 	"max"             => array(
@@ -88,4 +89,4 @@ return array(
 
 
 	'attributes' => array(),
 	'attributes' => array(),
 
 
-);
+);