Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 64868bd

Browse files
authored
Merge pull request Laravel-Lang#1246 from deligoez/master
[tr] Fix `min` validation messages
2 parents aaece9a + 0df8575 commit 64868bd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/tr/validation.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@
8585
'mimes' => ':attribute mutlaka :values biçiminde bir dosya olmalıdır.',
8686
'mimetypes' => ':attribute mutlaka :values biçiminde bir dosya olmalıdır.',
8787
'min' => [
88-
'numeric' => ':attribute en az :max olabilir.',
89-
'file' => ':attribute en az :max kilobayt olabilir.',
90-
'string' => ':attribute en az :max harf olabilir.',
91-
'array' => ':attribute en az :max öğe içerebilir.',
88+
'numeric' => ':attribute en az :min olabilir.',
89+
'file' => ':attribute en az :min kilobayt olabilir.',
90+
'string' => ':attribute en az :min harf olabilir.',
91+
'array' => ':attribute en az :min öğe içerebilir.',
9292
],
9393
'not_in' => 'Seçili :attribute geçersiz.',
9494
'not_regex' => ':attribute biçimi geçersiz.',

0 commit comments

Comments
 (0)