akaunting/resources/lang/tr-TR/validation.php

122 lines
6.6 KiB
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?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 here.
|
*/
'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.',
2017-09-21 17:07:02 +03:00
'after_or_equal' => ':attribute tarihi eşit veya daha eski olmalıdır',
2017-09-14 22:21:00 +03:00
'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.',
2017-09-21 17:07:02 +03:00
'before_or_equal' => ':attribute tarihi eşit veya daha eski olmalıdır',
2017-09-14 22:21:00 +03:00
'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.',
],
'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.',
'distinct' => ':attribute alanı yinelenen bir değere sahip.',
'email' => ':attribute biçimi geçersiz.',
'exists' => 'Seçili :attribute geçersiz.',
'file' => ':attribute dosya olmalıdır.',
'filled' => ':attribute alanı gereklidir.',
'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.',
'json' => ':attribute geçerli bir JSON değişkeni 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.',
],
'mimes' => ':attribute dosya biçimi :values olmalıdır.',
'mimetypes' => ':attribute dosya biçimi :values 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.',
],
'not_in' => 'Seçili :attribute geçersiz.',
'numeric' => ':attribute sayı olmalıdır.',
2017-09-21 17:07:02 +03:00
'present' => ':attribute alanı gereklidir',
2017-09-14 22:21:00 +03:00
'regex' => ':attribute biçimi geçersiz.',
'required' => ':attribute alanı gereklidir.',
'required_if' => ':attribute alanı, :other :value değerine sahip olduğunda zorunludur.',
2017-09-21 17:07:02 +03:00
'required_unless' => ':attribute alanı, :other :values değerine sahip olmadığı sürece zorunludur.',
2017-09-14 22:21:00 +03:00
'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.',
'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.',
],
'string' => ':attribute dizge olmalıdır.',
'timezone' => ':attribute geçerli bir saat dilimi olmalıdır.',
'unique' => ':attribute daha önceden kayıt edilmiş.',
2017-09-21 17:07:02 +03:00
'uploaded' => ':attribute yüklenemedi',
2017-09-14 22:21:00 +03:00
'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.
|
*/
2017-09-21 17:07:02 +03:00
'custom' => [
2017-09-14 22:21:00 +03:00
'attribute-name' => [
2017-09-21 17:07:02 +03:00
'rule-name' => 'Özel Mesaj',
2017-09-14 22:21:00 +03:00
],
2018-07-02 18:37:59 +03:00
'invalid_currency' => ':attribute geçersiz bir döviz kuru kodu.',
2018-11-08 12:11:42 +03:00
'invalid_amount' => 'Tutar :attribute geçersiz.',
2017-09-14 22:21:00 +03:00
],
/*
|--------------------------------------------------------------------------
| 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.
|
*/
2017-09-21 17:07:02 +03:00
'attributes' => [],
2017-09-14 22:21:00 +03:00
];