2016-03-25 01:18:05 -07:00
|
|
|
|
<?php
|
|
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
|
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.',
|
2023-02-21 03:54:55 -08:00
|
|
|
|
'import_field_empty' => 'Bu değer için :alan adı boş olamaz.',
|
2017-09-06 18:05:32 -07:00
|
|
|
|
'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.',
|
2023-02-21 03:54:55 -08:00
|
|
|
|
'is_unique_department' => 'Öznitelik bu Şirket Konumuna özgü olmalıdır',
|
2017-10-17 18:52:20 -07:00
|
|
|
|
'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
|
|
|
|
],
|
2022-01-13 21:27:29 -08:00
|
|
|
|
'starts_with' => 'Özellik aşağıdaki değerlerden biriyle başlamalıdır.',
|
2023-11-27 06:43:16 -08:00
|
|
|
|
'ends_with' => ':attribute aşağıdakilerden biriyle bitmelidir: :values.',
|
2023-06-13 09:12:01 -07:00
|
|
|
|
|
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.',
|
2023-11-27 06:43:16 -08:00
|
|
|
|
'two_column_unique_undeleted' => ':attribute :table1 ve :table2 genelinde benzersiz 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.',
|
2022-01-13 21:27:29 -08:00
|
|
|
|
'unique_undeleted' => ':attribute benzersiz olmalıdır.',
|
|
|
|
|
'non_circular' => ':attribute döngüsel bir başvuru oluşturmamalıdır.',
|
2024-03-01 03:17:02 -08:00
|
|
|
|
'not_array' => ':attribute bir dizi olamaz.',
|
2022-07-05 16:18:53 -07:00
|
|
|
|
'disallow_same_pwd_as_user_fields' => 'Şifre kullanıcı adı ile aynı olamaz.',
|
|
|
|
|
'letters' => 'Şifre en az bir harf içermelidir.',
|
|
|
|
|
'numbers' => 'Şifre en az bir rakam içermelidir.',
|
|
|
|
|
'case_diff' => 'Şifre hem büyük hem küçük harf içermelidir.',
|
|
|
|
|
'symbols' => 'Şifre sembol içermelidir.',
|
2022-05-24 15:07:14 -07:00
|
|
|
|
'gte' => [
|
2022-06-30 17:34:46 -07:00
|
|
|
|
'numeric' => 'Değer negatif olamaz'
|
2022-05-24 15:07:14 -07:00
|
|
|
|
],
|
2024-03-27 11:59:28 -07:00
|
|
|
|
'checkboxes' => ':attribute contains invalid options.',
|
|
|
|
|
'radio_buttons' => ':attribute is invalid.',
|
2022-05-24 15:07:14 -07:00
|
|
|
|
|
2017-09-06 18:05:32 -07:00
|
|
|
|
|
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' => [
|
2022-01-13 21:27:29 -08:00
|
|
|
|
'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.',
|
2022-01-13 21:27:29 -08:00
|
|
|
|
'statuslabel_type' => 'Geçerli bir durum etiketi türü seçmelisiniz',
|
2023-02-21 03:54:55 -08:00
|
|
|
|
|
|
|
|
|
// date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :(
|
|
|
|
|
// We use this because the default error message for date_format is reflects php Y-m-d, which non-PHP
|
|
|
|
|
// people won't know how to format.
|
2023-02-21 09:04:13 -08:00
|
|
|
|
'purchase_date.date_format' => ':attribute YYYY-MM-DD tarih formatında olmalıdır',
|
|
|
|
|
'last_audit_date.date_format' => ':attribute YYYY-MM-DD hh:mm:ss tarih formatında olmalıdır',
|
|
|
|
|
'expiration_date.date_format' => ':attribute YYYY-MM-DD şeklinde geçerli bir tarih formatında olmalıdır',
|
|
|
|
|
'termination_date.date_format' => ':attribute YYYY-MM-DD şeklinde geçerli bir tarih formatında olmalıdır',
|
|
|
|
|
'expected_checkin.date_format' => ':attribute YYYY-MM-DD şeklinde geçerli bir tarih formatında olmalıdır',
|
|
|
|
|
'start_date.date_format' => ':attribute YYYY-MM-DD şeklinde geçerli bir tarih formatında olmalıdır',
|
|
|
|
|
'end_date.date_format' => ':attribute YYYY-MM-DD şeklinde geçerli bir tarih formatında olmalıdır',
|
2023-02-21 03:54:55 -08:00
|
|
|
|
|
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
|
|
|
|
|
2024-03-27 11:59:28 -07:00
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Generic Validation Messages
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
'invalid_value_in_field' => 'Invalid value included in this field',
|
2022-01-13 21:27:29 -08:00
|
|
|
|
];
|