4 * The following language lines contain the default error messages used by
5 * the validator class. Some of these rules have multiple versions such
6 * as the size rules. Feel free to tweak each of these messages here.
10 // Standard laravel validation lines
11 'accepted' => ':attribute kabul edilmelidir.',
12 'active_url' => ':attribute geçerli bir URL adresi değildir.',
13 'after' => ':attribute :date tarihinden sonra bir tarih olmalıdır.',
14 'alpha' => ':attribute sadece harflerden oluşabilir.',
15 'alpha_dash' => ':attribute sadece harf, rakam ve tirelerden oluşabilir.',
16 'alpha_num' => ':attribute sadece harf ve rakam oluşabilir.',
17 'array' => ':attribute array olmalıdır..',
18 'before' => ':attribute :date tarihinden önce bir tarih olmalıdır.',
20 'numeric' => ':attribute, :min ve :max değerleri arasında olmalıdır.',
21 'file' => ':attribute, :min ve :max kilobyte boyutları arasında olmalıdır.',
22 'string' => ':attribute, :min ve :max karakter arasında olmalıdır.',
23 'array' => ':attribute :min ve :max öge arasında olmalıdır.',
25 'boolean' => ':attribute true veya false olmalıdır.',
26 'confirmed' => ':attribute doğrulaması eşleşmiyor.',
27 'date' => ':attribute geçerli bir tarih değil.',
28 'date_format' => ':attribute formatı :format\'ına uymuyor.',
29 'different' => ':attribute be :other birbirinden farklı olmalıdır.',
30 'digits' => ':attribute :digits basamaklı olmalıdır.',
31 'digits_between' => ':attribute :min ve :max basamaklı olmalıdır.',
32 'email' => ':attribute geçerli bir e-mail adresi olmalıdır.',
33 'ends_with' => 'The :attribute must end with one of the following: :values',
34 'filled' => ':attribute gerekli bir alandır.',
36 'numeric' => 'The :attribute must be greater than :value.',
37 'file' => 'The :attribute must be greater than :value kilobytes.',
38 'string' => 'The :attribute must be greater than :value characters.',
39 'array' => 'The :attribute must have more than :value items.',
42 'numeric' => 'The :attribute must be greater than or equal :value.',
43 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
44 'string' => 'The :attribute must be greater than or equal :value characters.',
45 'array' => 'The :attribute must have :value items or more.',
47 'exists' => 'Seçilen :attribute geçerli bir alan değildir.',
48 'image' => ':attribute bir görsel olmalıdır.',
49 'image_extension' => ':attribute geçerli ve desteklenen bir görsel uzantısı değildir.',
50 'in' => 'Seçilen :attribute geçerli değildir.',
51 'integer' => ':attribute bir integer değeri olmalıdır.',
52 'ip' => ':attribute geçerli bir IP adresi olmalıdır.',
53 'ipv4' => 'The :attribute must be a valid IPv4 address.',
54 'ipv6' => 'The :attribute must be a valid IPv6 address.',
55 'json' => 'The :attribute must be a valid JSON string.',
57 'numeric' => 'The :attribute must be less than :value.',
58 'file' => 'The :attribute must be less than :value kilobytes.',
59 'string' => 'The :attribute must be less than :value characters.',
60 'array' => 'The :attribute must have less than :value items.',
63 'numeric' => 'The :attribute must be less than or equal :value.',
64 'file' => 'The :attribute must be less than or equal :value kilobytes.',
65 'string' => 'The :attribute must be less than or equal :value characters.',
66 'array' => 'The :attribute must not have more than :value items.',
69 'numeric' => ':attribute, :max değerinden büyük olmamalıdır.',
70 'file' => ':attribute, :max kilobyte boyutundan büyük olmamalıdır.',
71 'string' => ':attribute, :max karakter boyutundan büyük olmamalıdır.',
72 'array' => ':attribute, en fazla :max öge içermelidir.',
74 'mimes' => ':attribute :values dosya tipinde olmalıdır.',
76 'numeric' => ':attribute, :min değerinden az olmamalıdır.',
77 'file' => ':attribute, :min kilobyte boyutundan küçük olmamalıdır.',
78 'string' => ':attribute, :min karakter boyutundan küçük olmamalıdır.',
79 'array' => ':attribute, en az :min öge içermelidir.',
81 'no_double_extension' => ':attribute sadece tek bir dosya tipinde olmalıdır.',
82 'not_in' => 'Seçili :attribute geçerli değildir.',
83 'not_regex' => 'The :attribute format is invalid.',
84 'numeric' => ':attribute rakam olmalıdır.',
85 'regex' => ':attribute formatı geçerli değildir.',
86 'required' => 'The :attribute field is required. :attribute alanı gereklidir.',
87 'required_if' => ':other alanı :value değerinde ise :attribute alanı gereklidir.',
88 'required_with' => 'Eğer :values değeri geçerli ise :attribute alanı gereklidir.',
89 'required_with_all' => 'Eğer :values değeri geçerli ise :attribute alanı gereklidir. ',
90 'required_without' => 'Eğer :values değeri geçerli değil ise :attribute alanı gereklidir.',
91 'required_without_all' => 'Eğer :values değerlerinden hiçbiri geçerli değil ise :attribute alanı gereklidir.',
92 'same' => ':attribute ve :other eşleşmelidir.',
94 'numeric' => ':attribute, :size boyutunda olmalıdır.',
95 'file' => ':attribute, :size kilobyte boyutunda olmalıdır.',
96 'string' => ':attribute, :size karakter uzunluğunda olmalıdır.',
97 'array' => ':attribute, :size sayıda öge içermelidir.',
99 'string' => ':attribute string olmalıdır.',
100 'timezone' => ':attribute geçerli bir alan olmalıdır.',
101 'unique' => ':attribute daha önce alınmış.',
102 'url' => ':attribute formatı geçerli değil.',
103 'uploaded' => 'Dosya yüklemesi başarısız oldu. Server bu boyutta dosyaları kabul etmiyor olabilir.',
105 // Custom validation lines
107 'password-confirm' => [
108 'required_with' => 'Parola onayı gereklidir.',
112 // Custom validation attributes