diff --git a/script/en/validation-inline.php b/script/en/validation-inline.php index d7cb47f5c50..4a4f5b35bcb 100644 --- a/script/en/validation-inline.php +++ b/script/en/validation-inline.php @@ -106,6 +106,9 @@ 'required_with_all' => 'This field is required when :values are present.', 'required_without' => 'This field is required when :values is not present.', 'required_without_all' => 'This field is required when none of :values are present.', + 'prohibited' => 'This field is prohibited.', + 'prohibited_if' => 'This field is prohibited when :other is :value.', + 'prohibited_unless' => 'This field is prohibited unless :other is in :values.', 'same' => 'The value of this field must match the one from :other.', 'size' => [ 'numeric' => 'The value must be :size.', diff --git a/script/en/validation.php b/script/en/validation.php index 675d84d5f23..aab6dc06383 100644 --- a/script/en/validation.php +++ b/script/en/validation.php @@ -105,6 +105,9 @@ 'required_with_all' => 'The :attribute field is required when :values are present.', 'required_without' => 'The :attribute field is required when :values is not present.', 'required_without_all' => 'The :attribute field is required when none of :values are present.', + 'prohibited' => 'The :attribute field is prohibited.', + 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', + 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', 'same' => 'The :attribute and :other must match.', 'size' => [ 'numeric' => 'The :attribute must be :size.', diff --git a/src/tr/validation-inline.php b/src/tr/validation-inline.php index 6a403bd0450..fe9550ac07d 100644 --- a/src/tr/validation-inline.php +++ b/src/tr/validation-inline.php @@ -94,6 +94,9 @@ 'required_with_all' => 'This field is required when :values are present.', 'required_without' => 'This field is required when :values is not present.', 'required_without_all' => 'This field is required when none of :values are present.', + 'prohibited' => 'Bu alan kısıtlanmıştır.', + 'prohibited_if' => ':other alanının değeri :value olduğunda bu alana veri girişi yapılamaz.', + 'prohibited_unless' => ':other alanı :value değerlerinin dışında olduğunda bu alana veri girişi yapılamaz.', 'same' => 'The value of this field must match the one from :other.', 'size' => [ 'array' => 'The content must contain :size items.', diff --git a/src/tr/validation.php b/src/tr/validation.php index dab62154f6b..b860d1560c5 100644 --- a/src/tr/validation.php +++ b/src/tr/validation.php @@ -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.',