Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tr] Add prohibited validation rule #1565

Merged
merged 6 commits into from
Mar 26, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/tr/validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@
'required_with_all' => ':attribute herhangi bir :values değeri varken mutlaka gereklidir.',
'required_without' => ':attribute :values yokken mutlaka gereklidir.',
'required_without_all' => ':attribute :values değerlerinden herhangi biri yokken mutlaka gereklidir.',
'prohibited' => ':attribute alanı kısıtlanmıştır.',
'prohibited_if' => ':other alanının değeri :value olduğunda :attribute alanına veri girişi yapılamaz.',
'prohibited_unless' => ':other alanı :value değerlerinin dışında olduğunda :attribute alanına veri girişi yapılamaz.',
'same' => ':attribute ile :other eşleşmelidir.',
'size' => [
'array' => ':attribute mutlaka :size öğeye sahip olmalıdır.',
Expand Down