[WIP] Refactor project
This commit is contained in:
@@ -1,145 +1,161 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages.
|
||||
|
|
||||
*/
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages here.
|
||||
|
|
||||
*/
|
||||
|
||||
return [
|
||||
'accepted' => ':attribute kabul edilmelidir.',
|
||||
'active_url' => ':attribute geçerli bir URL olmalıdır.',
|
||||
'after' => ':attribute şundan daha eski bir tarih olmalıdır :date.',
|
||||
'after_or_equal' => ':attribute tarihi :date tarihinden sonra veya tarihine eşit olmalıdır.',
|
||||
'after' => ':attribute mutlaka :date tarihinden sonra olmalıdır.',
|
||||
'after_or_equal' => ':attribute mutlaka :date tarihinden sonra veya aynı tarihte olmalıdır.',
|
||||
'alpha' => ':attribute sadece harflerden oluşmalıdır.',
|
||||
'alpha_dash' => ':attribute sadece harfler, rakamlar ve tirelerden oluşmalıdır.',
|
||||
'alpha_num' => ':attribute sadece harfler ve rakamlar içermelidir.',
|
||||
'array' => ':attribute dizi olmalıdır.',
|
||||
'before' => ':attribute şundan daha önceki bir tarih olmalıdır :date.',
|
||||
'before_or_equal' => ':attribute tarihi :date tarihinden önce veya tarihine eşit olmalıdır.',
|
||||
'alpha_dash' => ':attribute sadece harflerden, rakamlardan ve tirelerden oluşmalıdır.',
|
||||
'alpha_num' => ':attribute sadece harflerden ve rakamlardan oluşmalıdır.',
|
||||
'array' => ':attribute mutlaka bir dizi olmalıdır.',
|
||||
'attached' => 'Bu :attribute zaten tanımlı.',
|
||||
'before' => ':attribute mutlaka :date tarihinden önce olmalıdır.',
|
||||
'before_or_equal' => ':attribute mutlaka :date tarihinden önce veya aynı tarihte olmalıdır.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute :min - :max arasında olmalıdır.',
|
||||
'file' => ':attribute :min - :max arasındaki kilobayt değeri olmalıdır.',
|
||||
'string' => ':attribute :min - :max arasında karakterden oluşmalıdır.',
|
||||
'array' => ':attribute :min - :max arasında nesneye sahip olmalıdır.',
|
||||
'array' => ':attribute mutlaka :min - :max arasında öge içermelidir.',
|
||||
'file' => ':attribute mutlaka :min - :max kilobayt arasında olmalıdır.',
|
||||
'numeric' => ':attribute mutlaka :min - :max arasında olmalıdır.',
|
||||
'string' => ':attribute mutlaka :min - :max karakter arasında olmalıdır.',
|
||||
],
|
||||
'boolean' => ':attribute sadece doğru veya yanlış olmalıdır.',
|
||||
'confirmed' => ':attribute tekrarı eşleşmiyor.',
|
||||
'date' => ':attribute geçerli bir tarih olmalıdır.',
|
||||
'date_format' => ':attribute :format biçimi ile eşleşmiyor.',
|
||||
'different' => ':attribute ile :other birbirinden farklı olmalıdır.',
|
||||
'digits' => ':attribute :digits rakam olmalıdır.',
|
||||
'digits_between' => ':attribute :min ile :max arasında rakam olmalıdır.',
|
||||
'dimensions' => ':attribute görsel ölçüleri geçersiz.',
|
||||
'date' => ':attribute geçerli bir tarih değil.',
|
||||
'date_equals' => ':attribute mutlaka :date ile aynı tarihte olmalıdır.',
|
||||
'date_format' => ':attribute mutlaka :format biçiminde olmalıdır.',
|
||||
'different' => ':attribute ile :other mutlaka birbirinden farklı olmalıdır.',
|
||||
'digits' => ':attribute mutlaka :digits basamaklı olmalıdır.',
|
||||
'digits_between' => ':attribute mutlaka en az :min, en fazla :max basamaklı olmalıdır.',
|
||||
'dimensions' => ':attribute geçersiz resim boyutlarına sahip.',
|
||||
'distinct' => ':attribute alanı yinelenen bir değere sahip.',
|
||||
'email' => ':attribute biçimi geçersiz.',
|
||||
'email' => ':attribute mutlaka geçerli bir e-posta adresi olmalıdır.',
|
||||
'ends_with' => ':attribute sadece şu değerlerden biriyle bitebilir: :values.',
|
||||
'exists' => 'Seçili :attribute geçersiz.',
|
||||
'file' => ':attribute dosya olmalıdır.',
|
||||
'filled' => ':attribute alanının doldurulması zorunludur.',
|
||||
'file' => ':attribute mutlaka bir dosya olmalıdır.',
|
||||
'filled' => ':attribute mutlaka doldurulmalıdır.',
|
||||
'gt' => [
|
||||
'numeric' => 'The :attribute must be greater than :value.',
|
||||
'file' => 'The :attribute must be greater than :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than :value characters.',
|
||||
'array' => 'The :attribute must have more than :value items.',
|
||||
'array' => ':attribute mutlaka :value sayısından daha fazla öge içermelidir.',
|
||||
'file' => ':attribute mutlaka :value kilobayt\'tan büyük olmalıdır.',
|
||||
'numeric' => ':attribute mutlaka :value sayısından büyük olmalıdır.',
|
||||
'string' => ':attribute mutlaka :value karakterden uzun olmalıdır.',
|
||||
],
|
||||
'gte' => [
|
||||
'numeric' => 'The :attribute must be greater than or equal :value.',
|
||||
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than or equal :value characters.',
|
||||
'array' => 'The :attribute must have :value items or more.',
|
||||
'array' => ':attribute mutlaka :value veya daha fazla öge içermelidir.',
|
||||
'file' => ':attribute mutlaka :value kilobayt\'tan büyük veya eşit olmalıdır.',
|
||||
'numeric' => ':attribute mutlaka :value sayısından büyük veya eşit olmalıdır.',
|
||||
'string' => ':attribute mutlaka :value karakterden uzun veya eşit olmalıdır.',
|
||||
],
|
||||
'image' => ':attribute alanı resim dosyası olmalıdır.',
|
||||
'in' => ':attribute değeri geçersiz.',
|
||||
'in_array' => ':attribute alanı :other içinde mevcut değil.',
|
||||
'integer' => ':attribute tamsayı olmalıdır.',
|
||||
'ip' => ':attribute geçerli bir IP adresi olmalıdır.',
|
||||
'ipv4' => ':attribute geçerli bir IPv4 adresi olmalıdır.',
|
||||
'ipv6' => ':attribute geçerli bir IPv6 adresi olmalıdır.',
|
||||
'json' => ':attribute geçerli bir JSON değişkeni olmalıdır.',
|
||||
'image' => ':attribute mutlaka bir resim olmalıdır.',
|
||||
'in' => 'Seçili :attribute geçersiz.',
|
||||
'in_array' => ':attribute :other içinde mevcut değil.',
|
||||
'integer' => ':attribute mutlaka bir tam sayı olmalıdır.',
|
||||
'ip' => ':attribute mutlaka geçerli bir IP adresi olmalıdır.',
|
||||
'ipv4' => ':attribute mutlaka geçerli bir IPv4 adresi olmalıdır.',
|
||||
'ipv6' => ':attribute mutlaka geçerli bir IPv6 adresi olmalıdır.',
|
||||
'json' => ':attribute mutlaka geçerli bir JSON içeriği olmalıdır.',
|
||||
'lt' => [
|
||||
'numeric' => 'The :attribute must be less than :value.',
|
||||
'file' => 'The :attribute must be less than :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than :value characters.',
|
||||
'array' => 'The :attribute must have less than :value items.',
|
||||
'array' => ':attribute mutlaka :value sayısından daha az öge içermelidir.',
|
||||
'file' => ':attribute mutlaka :value kilobayt\'tan küçük olmalıdır.',
|
||||
'numeric' => ':attribute mutlaka :value sayısından küçük olmalıdır.',
|
||||
'string' => ':attribute mutlaka :value karakterden kısa olmalıdır.',
|
||||
],
|
||||
'lte' => [
|
||||
'numeric' => 'The :attribute must be less than or equal :value.',
|
||||
'file' => 'The :attribute must be less than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than or equal :value characters.',
|
||||
'array' => 'The :attribute must not have more than :value items.',
|
||||
'array' => ':attribute mutlaka :value veya daha az öge içermelidir.',
|
||||
'file' => ':attribute mutlaka :value kilobayt\'tan küçük veya eşit olmalıdır.',
|
||||
'numeric' => ':attribute mutlaka :value sayısından küçük veya eşit olmalıdır.',
|
||||
'string' => ':attribute mutlaka :value karakterden kısa veya eşit olmalıdır.',
|
||||
],
|
||||
'max' => [
|
||||
'numeric' => ':attribute değeri :max değerinden küçük olmalıdır.',
|
||||
'file' => ':attribute değeri :max kilobayt değerinden küçük olmalıdır.',
|
||||
'string' => ':attribute değeri :max karakter değerinden küçük olmalıdır.',
|
||||
'array' => ':attribute değeri :max adedinden az nesneye sahip olmalıdır.',
|
||||
'array' => ':attribute en fazla :max öge içerebilir.',
|
||||
'file' => ':attribute en fazla :max kilobayt olabilir.',
|
||||
'numeric' => ':attribute en fazla :max olabilir.',
|
||||
'string' => ':attribute en fazla :max karakter olabilir.',
|
||||
],
|
||||
'mimes' => ':attribute dosya biçimi :values olmalıdır.',
|
||||
'mimetypes' => ':attribute dosya biçimi :values olmalıdır.',
|
||||
'mimes' => ':attribute mutlaka :values biçiminde bir dosya olmalıdır.',
|
||||
'mimetypes' => ':attribute mutlaka :values biçiminde bir dosya olmalıdır.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute değeri :min değerinden büyük olmalıdır.',
|
||||
'file' => ':attribute değeri :min kilobayt değerinden büyük olmalıdır.',
|
||||
'string' => ':attribute değeri :min karakter değerinden büyük olmalıdır.',
|
||||
'array' => ':attribute en az :min nesneye sahip olmalıdır.',
|
||||
'array' => ':attribute en az :min öge içerebilir.',
|
||||
'file' => ':attribute en az :min kilobayt olabilir.',
|
||||
'numeric' => ':attribute en az :min olabilir.',
|
||||
'string' => ':attribute en az :min karakter olabilir.',
|
||||
],
|
||||
'multiple_of' => ':attribute, :value\'nin katları olmalıdır',
|
||||
'not_in' => 'Seçili :attribute geçersiz.',
|
||||
'not_regex' => ':attribute biçimi geçersiz.',
|
||||
'numeric' => ':attribute sayı olmalıdır.',
|
||||
'present' => ':attribute alanı mevcut olmalıdır.',
|
||||
'numeric' => ':attribute mutlaka bir sayı olmalıdır.',
|
||||
'password' => 'Parola geçersiz.',
|
||||
'present' => ':attribute mutlaka mevcut olmalıdır.',
|
||||
'prohibited' => ':attribute alanı kısıtlanmıştır.',
|
||||
'prohibited_if' => ':other alanının değeri :value ise :attribute alanına veri girişi yapılamaz.',
|
||||
'prohibited_unless' => ':other alanı :value değerlerinden birisi değilse :attribute alanına veri girişi yapılamaz.',
|
||||
'regex' => ':attribute biçimi geçersiz.',
|
||||
'required' => ':attribute alanı gereklidir.',
|
||||
'required_if' => ':attribute alanı, :other :value değerine sahip olduğunda zorunludur.',
|
||||
'required_unless' => ':attribute alanı, :other alanı :value değerlerinden birine sahip olmadığında zorunludur.',
|
||||
'required_with' => ':attribute alanı :values varken zorunludur.',
|
||||
'required_with_all' => ':attribute alanı herhangi bir :values değeri varken zorunludur.',
|
||||
'required_without' => ':attribute alanı :values yokken zorunludur.',
|
||||
'required_without_all' => ':attribute alanı :values değerlerinden herhangi biri yokken zorunludur.',
|
||||
'same' => ':attribute ile :other eşleşmelidir.',
|
||||
'relatable' => 'Bu :attribute bu kaynakla ilişkili olmayabilir.',
|
||||
'required' => ':attribute mutlaka gereklidir.',
|
||||
'required_if' => ':attribute :other :value değerine sahip olduğunda mutlaka gereklidir.',
|
||||
'required_unless' => ':attribute :other :values değerlerinden birine sahip olmadığında mutlaka gereklidir.',
|
||||
'required_with' => ':attribute :values varken mutlaka gereklidir.',
|
||||
'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.',
|
||||
'same' => ':attribute ile :other aynı olmalıdır.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute :size olmalıdır.',
|
||||
'file' => ':attribute :size kilobyte olmalıdır.',
|
||||
'string' => ':attribute :size karakter olmalıdır.',
|
||||
'array' => ':attribute :size nesneye sahip olmalıdır.',
|
||||
'array' => ':attribute mutlaka :size ögeye sahip olmalıdır.',
|
||||
'file' => ':attribute mutlaka :size kilobayt olmalıdır.',
|
||||
'numeric' => ':attribute mutlaka :size olmalıdır.',
|
||||
'string' => ':attribute mutlaka :size karakterli olmalıdır.',
|
||||
],
|
||||
'string' => ':attribute dizge olmalıdır.',
|
||||
'timezone' => ':attribute geçerli bir saat dilimi olmalıdır.',
|
||||
'unique' => ':attribute daha önceden kayıt edilmiş.',
|
||||
'starts_with' => ':attribute sadece şu değerlerden biriyle başlayabilir: :values.',
|
||||
'string' => ':attribute mutlaka bir metin olmalıdır.',
|
||||
'timezone' => ':attribute mutlaka geçerli bir saat dilimi olmalıdır.',
|
||||
'unique' => ':attribute zaten alınmış.',
|
||||
'uploaded' => ':attribute yüklemesi başarısız.',
|
||||
'url' => ':attribute biçimi geçersiz.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'attribute-name' => [
|
||||
'rule-name' => 'custom-message',
|
||||
'uuid' => ':attribute mutlaka geçerli bir UUID olmalıdır.',
|
||||
'custom' => [
|
||||
'niteleyici-adi' => [
|
||||
'kural-adi' => 'Özel doğrulama mesajı',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Attributes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used to swap attribute place-holders
|
||||
| with something more reader friendly such as E-Mail Address instead
|
||||
| of "email". This simply helps us make messages a little cleaner.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [
|
||||
'attributes' => [
|
||||
'address' => 'Adres',
|
||||
'age' => 'Yaş',
|
||||
'available' => 'Mevcut',
|
||||
'city' => 'Şehir',
|
||||
'content' => 'İçerik',
|
||||
'country' => 'Ülke',
|
||||
'date' => 'Tarih',
|
||||
'day' => 'Gün',
|
||||
'description' => 'Açıklama',
|
||||
'email' => 'E-posta adresi',
|
||||
'excerpt' => 'Alıntı',
|
||||
'first_name' => 'Adı',
|
||||
'gender' => 'Cinsiyet',
|
||||
'hour' => 'Saat',
|
||||
'last_name' => 'Soyadı',
|
||||
'minute' => 'Dakika',
|
||||
'mobile' => 'Cep telefonu',
|
||||
'month' => 'Ay',
|
||||
'name' => 'Adı',
|
||||
'password' => 'Şifre',
|
||||
'password_confirmation' => 'Şifre (Tekrar)',
|
||||
'phone' => 'Telefon',
|
||||
'second' => 'Saniye',
|
||||
'sex' => 'Cinsiyet',
|
||||
'size' => 'Boyut',
|
||||
'time' => 'Zaman',
|
||||
'title' => 'Unvan',
|
||||
'username' => 'Kullanıcı adı',
|
||||
'year' => 'Yıl',
|
||||
],
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user