Skip to content

Commit

Permalink
Update validation.php
Browse files Browse the repository at this point in the history
Translation fix: minimal/maximal was messed up.
  • Loading branch information
lintaba committed Jan 9, 2015
1 parent f0cd5f9 commit e6d3790
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hu/validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@
"numeric" => "A(z) :attribute értéke nem lehet nagyobb, mint :max!",
"file" => "A(z) :attribute mérete nem lehet több, mint :max kilobájt.",
"string" => "A(z) :attribute hossza nem lehet több, mint :max karakter.",
"array" => "A(z) :attribute nem tartalmazhat több mint :max elemet."
"array" => "A(z) :attribute legfeljebb :max elemet kell, hogy tartalmazzon."
],
"mimes" => "A(z) :attribute kizárólag az alábbi fájlformátumok egyike lehet: :values.",
"min" => [
"numeric" => "A(z) :attribute értéke nem lehet kisebb, mint :min!",
"file" => "A(z) :attribute mérete nem lehet több, mint :min kilobájt.",
"string" => "A(z) :attribute hossza nem lehet több, mint :min karakter.",
"file" => "A(z) :attribute mérete nem lehet kevesebb, mint :min kilobájt.",
"string" => "A(z) :attribute hossza nem lehet kevesebb, mint :min karakter.",
"array" => "A(z) :attribute legalább :min elemet kell, hogy tartalmazzon."
],
"not_in" => "A(z) :attribute értéke érvénytelen.",
Expand Down

0 comments on commit e6d3790

Please sign in to comment.