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

102 lines
4.6 KiB
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
return array(
/*
|--------------------------------------------------------------------------
| 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-08-25 07:32:57 -07:00
"accepted" => ": attribute benzersiz olması gerekir.",
"active_url" => ":attribute geçersiz URL.",
"after" => ":attribute :date sonra olmalı.",
"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.",
"before" => ":attribute :date den önce olmalı.",
2016-03-25 01:18:05 -07:00
"between" => array(
2017-08-25 07:32:57 -07:00
"numeric" => ":attribute :min - :max arasında olmalı.",
"file" => ":attribute :min - :max Kb arasında olmalı.",
"string" => ":attribute :min - :max karakter arasında olmalı.",
2016-03-25 01:18:05 -07:00
),
2017-08-25 07:32:57 -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.",
"email" => ":attribute biçim geçersiz.",
"exists" => ":attribute seçim geçersiz.",
"email_array" => "Bir veya daha fazla e-posta adresi geçerli değil.",
"hashed_pass" => "Your current password is incorrect",
'dumbpwd' => 'That password is too common.',
"image" => ":attribute bir görüntü olması gerekir.",
"in" => ":attribute geçersiz.",
"integer" => ":attribute bir tamsayı olmalıdır.",
"ip" => ":attribute geçerli bir IP adresi olması gerekir.",
2016-03-25 01:18:05 -07:00
"max" => array(
2017-08-25 07:32:57 -07:00
"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.",
2016-03-25 01:18:05 -07:00
),
2017-08-25 07:32:57 -07:00
"mimes" => ":attribute :values türleri olmalı.",
2016-03-25 01:18:05 -07:00
"min" => array(
2017-08-25 07:32:57 -07:00
"numeric" => ":attribute :min den küçük olmalı.",
"file" => ":attribute :min Kb tan küçük olmalı.",
"string" => ":attribute :min karakterden küçük olmalı.",
2016-03-25 01:18:05 -07:00
),
2017-08-25 07:32:57 -07:00
"not_in" => ":attribute geçersiz.",
"numeric" => ":attribute sayı olmalıdır.",
"regex" => ":attribute formatı geçersiz.",
"required" => ":attribute alanı zorunludur.",
"required_if" => ":attribute :other :value geçersiz.",
"required_with" => ":attribute :values geçersiz.",
"required_without" => ":attribute :values geçersiz.",
"same" => ":attribute ve :other aynı olmalı.",
2016-03-25 01:18:05 -07:00
"size" => array(
2017-08-25 07:32:57 -07:00
"numeric" => ":attribute :size olmalı.",
"file" => ":attribute :size Kb olmalı.",
"string" => ":attribute :size karakter olmalı.",
2016-03-25 01:18:05 -07:00
),
2017-08-25 07:32:57 -07:00
"unique" => ":attribute zaten alınmış.",
"url" => ":attribute biçim geçersiz.",
"statuslabel_type" => "Geçerli bir durum etiketi türü seçmelisiniz",
"unique_undeleted" => ": attribute benzersiz olması gerekir.",
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.
|
*/
'custom' => array(),
2017-08-25 07:32:57 -07:00
'alpha_space' => ": attribute alanı izin verilmeyen bir karakter içeriyor.",
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.
|
*/
'attributes' => array(),
);