PHP Classes

File: modules/system/lang/tr/validation.php

Recommend this page to a friend!
  Packages of Luke Towers   Winter   modules/system/lang/tr/validation.php   Download  
File: modules/system/lang/tr/validation.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Winter
Content management system that uses MVC
Author: By
Last change:
Date: 7 months ago
Size: 8,499 bytes
 

Contents

Class file image Download
<?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 eski bir tarih olmal?d?r :date.',
   
'after_or_equal' => ':attribute ?undan eski veya ayn? bir tarih olmal?d?r :date.',
   
'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 önceki bir tarih olmal?d?r :date.',
   
'before_or_equal' => ':attribute ?undan önceki veya ayn? bir tarih olmal?d?r :date.',
   
'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 alan? true veya false olmal?d?r.',
   
'confirmed' => ':attribute tekrar? e?le?miyor.',
   
'date' => ':attribute geçerli bir tarih olmal?d?r.',
   
'date_equals' => ':attribute alan? :date ile e?it 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 geçersiz resim boyutlar?na sahip.',
   
'distinct' => ':attribute alan? yinelenen bir de?ere sahip.',
   
'email' => ':attribute biçimi geçersiz.',
   
'ends_with' => ':attribute ?unlardan biri ile bitmeli: :values.',
   
'exists' => 'Seçili :attribute geçersiz.',
   
'file' => ':attribute bir dosya olmal?.',
   
'filled' => ':attribute alan?n bir de?eri içermelidir.',
   
'gt' => [
       
'numeric' => ':attribute, :value de?erinden büyük olmal?d?r.',
       
'file' => ':attribute, :value kilobayttan büyük olmal?d?r.',
       
'string' => ':attribute, :value karakterden büyük olmal?d?r.',
       
'array' => ':attribute, :value ö?eden daha fazla olmal?d?r.',
    ],
   
'gte' => [
       
'numeric' => ':attribute, :value de?erinden büyük veya ona e?it olmal?d?r.',
       
'file' => ':attribute, :value kilobayttan büyük veya ona e?it olmal?d?r.',
       
'string' => ':attribute, :value karakterden büyük veya ona e?it olmal?d?r.',
       
'array' => ':attribute, :value ö?eden veya daha fazlas?na sahip olmal?d?r.'
   
],
   
'image' => ':attribute alan? resim dosyas? olmal?d?r.',
   
'in' => ':attribute de?eri geçersiz.',
   
'in_array' => ':attribute alan?, :other da bulunmuyor.',
   
'integer' => ':attribute rakam 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 string olmal?d?r.',
   
'lt' => [
       
'numeric' => ':attribute, :value de?erinden küçük olmal?d?r.',
       
'file' => ':attribute, :value kilobayttan küçük olmal?d?r.',
       
'string' => ':attribute, :value karakterden küçük olmal?d?r.',
       
'array' => ':attribute, :value ö?eden az olmal?d?r.',
    ],
   
'lte' => [
       
'numeric' => ':attribute, :value de?erinden küçük veya ona e?it olmal?d?r.',
       
'file' => ':attribute, :value kilobayttan küçük veya ona e?it olmal?d?r.',
       
'string' => ':attribute, :value karakterden küçük veya ona e?it olmal?d?r.',
       
'array' => ':attribute, :value ö?eden fazla olmamal?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.',
   
'not_regex' => ':attribute format? geçersiz.',
   
'numeric' => ':attribute rakam olmal?d?r.',
   
'present' => ':attribute alan? mevcut olmal?.',
   
'regex' => ':attribute biçimi geçersiz.',
   
'required' => ':attribute alan? zorunludur.',
   
'required_if' => ':attribute alan?, :other :value de?erine sahip oldu?unda zorunludur.',
   
'required_unless' => ':other de?eri :values içinde olmad??? müddetçe :attribute alan? zorunludur.',
   
'required_with' => ':attribute alan? :values varken zorunludur.',
   
'required_with_all' => ':values de?eri oldu?u durumda :attribute alan? zorunludur.',
   
'required_without' => ':attribute alan? :values yokken zorunludur.',
   
'required_without_all' => ':values de?erleri olmad??? müddetçe :attribute alan? 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.',
    ],
   
'starts_with' => ':attribute ?unlardan biriyle ba?lamal?d?r: :values.',
   
'string' => 'The :attribute must be a string.',
   
'timezone' => 'The :attribute must be a valid zone.',
   
'unique' => ':attribute daha önceden kay?t edilmi?.',
   
'uploaded' => 'The :attribute failed to upload.',
   
'url' => ':attribute biçimi geçersiz.',
   
'uuid' => ':attribute geçerli bir UUID olmal?d?r.',

   
/*
    |--------------------------------------------------------------------------
    | 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',
        ],
    ],

   
/*
    |--------------------------------------------------------------------------
    | 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' => [],

];