snipe-it/resources/lang/tr/validation.php

143 lines
7.4 KiB
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
return [
2016-03-25 01:18:05 -07:00
/*
|--------------------------------------------------------------------------
| 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
| such as the size rules. Feel free to tweak each of these messages.
|
*/
2017-09-06 18:05:32 -07:00
'accepted' => ': attribute benzersiz olması gerekir.',
'active_url' => ':attribute geçersiz URL.',
'after' => ':attribute :date sonra olmalı.',
2017-10-17 18:52:20 -07:00
'after_or_equal' => ': Özniteliği, tarihten veya sonrasına ait bir tarih olmalıdır: date.',
2017-09-06 18:05:32 -07:00
'alpha' => ':attribute sadece harf içermeli.',
'alpha_dash' => ':attribute sadece harf, rakam ve noktalama işaretleri olabilir.',
'alpha_num' => ':attribute sadece harf ve rakam olabilir.',
2017-10-17 18:52:20 -07:00
'array' => ': Nitelik bir dizi olmalıdır.',
2017-09-06 18:05:32 -07:00
'before' => ':attribute :date den önce olmalı.',
2017-10-17 18:52:20 -07:00
'before_or_equal' => ': Özniteliği, tarihten önce veya ona eşit bir tarih olmalıdır: date.',
2017-09-06 18:05:32 -07:00
'between' => [
'numeric' => ':attribute :min - :max arasında olmalı.',
'file' => ':attribute :min - :max Kb arasında olmalı.',
'string' => ':attribute :min - :max karakter arasında olmalı.',
2017-10-17 18:52:20 -07:00
'array' => ': Özelliği,: min ve: max öğeleri arasında olmalıdır.',
2017-09-06 18:05:32 -07:00
],
'boolean' => ':attribute doğru veya yanlış olabilir.',
'confirmed' => ':attribute doğrulama uyuşmuyor.',
'date' => ':attribute geçerli bir tarih değil.',
'date_format' => ':attribute biçim geçersiz.',
'different' => ':attribute ve :other farklı olmalı.',
'digits' => ':attribute :digits numara olmalı.',
'digits_between' => ':attribute :min ve :max numara.',
2017-10-17 18:52:20 -07:00
'dimensions' => ': Özniteliği geçersiz görüntü boyutlarına sahip.',
'distinct' => ': Öznitelik alanı yinelenen bir değere sahip.',
2017-09-06 18:05:32 -07:00
'email' => ':attribute biçim geçersiz.',
'exists' => ':attribute seçim geçersiz.',
2017-10-17 18:52:20 -07:00
'file' => ': Özniteliği bir dosya olmalıdır.',
'filled' => ': Attribute alanının bir değeri olmalıdır.',
2017-09-06 18:05:32 -07:00
'image' => ':attribute bir görüntü olması gerekir.',
'in' => ':attribute geçersiz.',
2017-10-17 18:52:20 -07:00
'in_array' => ': Attribute alanı yok diğeri.',
2017-09-06 18:05:32 -07:00
'integer' => ':attribute bir tamsayı olmalıdır.',
'ip' => ':attribute geçerli bir IP adresi olması gerekir.',
2017-10-17 18:52:20 -07:00
'ipv4' => ': Özniteliği geçerli bir IPv4 adresi olmalıdır.',
'ipv6' => ': Özniteliği geçerli bir IPv6 adresi olmalıdır.',
'json' => ': Özniteliği geçerli bir JSON dizesi olmalıdır.',
2017-09-06 18:05:32 -07:00
'max' => [
'numeric' => ':attribute :max dan büyük olmalı.',
'file' => ':attribute :max Kb tan büyük olmalı.',
'string' => ':attribute :max karakterden büyük olamaz.',
2017-10-17 18:52:20 -07:00
'array' => ': Özniteliği, maksimum öğelerden fazla olamaz.',
2017-09-06 18:05:32 -07:00
],
'mimes' => ':attribute :values türleri olmalı.',
2017-10-17 18:52:20 -07:00
'mimetypes' => ': Özniteliği,:: değerleri türünde bir dosya olmalıdır.',
2017-09-06 18:05:32 -07:00
'min' => [
'numeric' => ':attribute :min den küçük olmalı.',
'file' => ':attribute :min Kb tan küçük olmalı.',
'string' => ':attribute :min karakterden küçük olmalı.',
2017-10-17 18:52:20 -07:00
'array' => ': Özelliği en az: dakika öğesine sahip olmalıdır.',
2017-09-06 18:05:32 -07:00
],
'starts_with' => 'Özellik aşağıdaki değerlerden biriyle başlamalıdır.',
2017-09-06 18:05:32 -07:00
'not_in' => ':attribute geçersiz.',
'numeric' => ':attribute sayı olmalıdır.',
2017-10-17 18:52:20 -07:00
'present' => ': Attribute alanı bulunmalıdır.',
2017-12-12 09:20:57 -08:00
'valid_regex' => 'Bu geçerli bir regex değildir.',
2017-09-06 18:05:32 -07:00
'regex' => ':attribute formatı geçersiz.',
'required' => ':attribute alanı zorunludur.',
'required_if' => ':attribute :other :value geçersiz.',
2017-10-17 18:52:20 -07:00
'required_unless' => ': Attribute alanı, aşağıdaki koşullar haricinde: other is in: values.',
2017-09-06 18:05:32 -07:00
'required_with' => ':attribute :values geçersiz.',
2017-10-17 18:52:20 -07:00
'required_with_all' => ': Öznitelik alanı, şu durumlarda gereklidir: değerler mevcut.',
2017-09-06 18:05:32 -07:00
'required_without' => ':attribute :values geçersiz.',
2017-10-17 18:52:20 -07:00
'required_without_all' => ': Özellik alanının hiçbiri: değerleri mevcut değilse gereklidir.',
2017-09-06 18:05:32 -07:00
'same' => ':attribute ve :other aynı olmalı.',
'size' => [
'numeric' => ':attribute :size olmalı.',
'file' => ':attribute :size Kb olmalı.',
'string' => ':attribute :size karakter olmalı.',
2017-10-17 18:52:20 -07:00
'array' => ': Özniteliği: boyut öğeleri içermelidir.',
2017-09-06 18:05:32 -07:00
],
2017-10-17 18:52:20 -07:00
'string' => ': Özniteliği bir dize olmalıdır.',
'timezone' => ': Özniteliği geçerli bir bölge olmalıdır.',
2017-09-06 18:05:32 -07:00
'unique' => ':attribute zaten alınmış.',
2017-10-17 18:52:20 -07:00
'uploaded' => ': Özniteliği yüklenemedi.',
2017-09-06 18:05:32 -07:00
'url' => ':attribute biçim geçersiz.',
'unique_undeleted' => ':attribute benzersiz olmalıdır.',
'non_circular' => ':attribute döngüsel bir başvuru oluşturmamalıdır.',
'gte' => [
'numeric' => 'Value cannot be negative'
],
2017-09-06 18:05:32 -07:00
/*
|--------------------------------------------------------------------------
| 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.
|
*/
2016-03-25 01:18:05 -07:00
/*
|--------------------------------------------------------------------------
| 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-06 18:05:32 -07:00
'custom' => [
'alpha_space' => ': Attribute alanı, izin verilmeyen bir karakter içeriyor.',
'email_array' => 'Bir veya daha fazla e-posta adresi geçersiz.',
'hashed_pass' => 'Geçerli şifre yanlış',
2017-10-17 18:52:20 -07:00
'dumbpwd' => 'Bu şifre çok yaygındır.',
'statuslabel_type' => 'Geçerli bir durum etiketi türü seçmelisiniz',
2017-09-06 18:05:32 -07:00
],
2016-03-25 01:18:05 -07: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-06 18:05:32 -07:00
'attributes' => [],
2016-03-25 01:18:05 -07:00
];