From 85e8ff9ca301482e48f4bfe0891399b47bb898d4 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Sat, 6 May 2017 10:05:48 +0100 Subject: [PATCH] New translations validation.php (Turkish) --- resources/lang/tr-TR/validation.php | 122 ++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 resources/lang/tr-TR/validation.php diff --git a/resources/lang/tr-TR/validation.php b/resources/lang/tr-TR/validation.php new file mode 100644 index 00000000..fc874f07 --- /dev/null +++ b/resources/lang/tr-TR/validation.php @@ -0,0 +1,122 @@ + ':attribute kabul edilmeli.', + 'active_url' => ':attribute geçerli bir URL değil.', + 'after' => ':attribtute , :date tarihinden sonra bir tarih olmalıdır.', + 'alpha' => ':attribute sadece harf içerebilir.', + 'alpha_dash' => ':attribute sadece harf, sayı ve kısa çizgi içerebilir.', + 'alpha_num' => ':attribute sadece harf ve sayı içerebilir.', + 'array' => ':attribute bir dizi olmalıdır.', + 'before' => ':attribute, :date tarihinden önce bir tarih olmalıdır.', + 'between' => [ + 'numeric' => ':attribute :min ve :max arasında olmalıdır.', + 'file' => ':attribute :min ve :max kilobayt arasında olmalıdır.', + 'string' => ':attribute :min ve :max karakter arasında olmalıdır.', + 'array' => ':attribute en az :min en fazla :max maddeye sahip olmalı.', + ], + 'boolean' => ':attribute alanı doğru veya yanlış olmalıdır.', + 'confirmed' => ':attribute doğrulaması eşleşmiyor.', + 'date' => ':attribute geçersiz bir tarih.', + 'date_format' => ':attribute :format formatı ile eşleşmiyor.', + 'different' => ':attribute ve :other farklı olmalıdır.', + 'digits' => ':attribute :digits rakam olmalıdır.', + 'digits_between' => ':attribute :min ve :max rakam arasında olmalıdır.', + 'email' => ':attribute geçerli bir e-posta adresi olmalıdır.', + 'exists' => 'Seçili :attribute geçersiz.', + 'distinct' => ':attribute alanında yinelenen bir değer var.', + 'filled' => ':attribute alanı gereklidir.', + 'image' => ':attribute bir görsel olmalı.', + 'in' => 'Seçili :attribute geçersiz.', + 'in_array' => ':attribute alanı :other ile eşleşmiyor.', + 'integer' => 'The :attribute must be an integer.', + 'ip' => 'The :attribute must be a valid IP address.', + 'json' => ':attribute geçerli bir JSON dizini olmalıdır.', + 'max' => [ + 'numeric' => 'The :attribute may not be greater than :max.', + 'file' => 'The :attribute may not be greater than :max kilobytes.', + 'string' => 'The :attribute may not be greater than :max characters.', + 'array' => ':attribute :max maddeden daha fazlasına sahip olamaz.', + ], + 'mimes' => 'The :attribute must be a file of type: :values.', + 'min' => [ + 'numeric' => 'The :attribute must be at least :min.', + 'file' => ':attribute en az :min kilobayt olmalıdır.', + 'string' => 'The :attribute must be at least :min characters.', + 'array' => 'The :attribute must have at least :min items.', + ], + 'not_in' => 'Seçili :attribute geçersiz.', + 'numeric' => 'The :attribute must be a number.', + 'present' => ':attribute alanı mevcut olmalı.', + 'regex' => 'The :attribute format is invalid.', + 'required' => ':attribute alanı gereklidir.', + 'required_if' => 'The :attribute field is required when :other is :value.', + 'required_unless' => 'The :attribute field is required unless :other is in :values.', + 'required_with' => 'The :attribute field is required when :values is present.', + 'required_with_all' => 'The :attribute field is required when :values is present.', + 'required_without' => 'The :attribute field is required when :values is not present.', + 'required_without_all' => 'The :attribute field is required when none of :values are present.', + 'same' => 'The :attribute and :other must match.', + 'size' => [ + 'numeric' => 'The :attribute must be :size.', + 'file' => 'The :attribute must be :size kilobytes.', + 'string' => 'The :attribute must be :size characters.', + 'array' => 'The :attribute must contain :size items.', + ], + 'string' => 'The :attribute must be a string.', + 'timezone' => 'The :attribute must be a valid zone.', + 'unique' => 'The :attribute has already been taken.', + 'url' => 'The :attribute format is invalid.', + + /* + |-------------------------------------------------------------------------- + | 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' => 'özel-mesaj', + ], + ], + + /* + |-------------------------------------------------------------------------- + | 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' => [], + +]; \ No newline at end of file