Enhance language support and fix validation messages
- Added support for additional languages (Bengali, Portuguese, Russian, Urdu, Punjabi, German, Javanese, Korean, Vietnamese, Telugu, Marathi, Tamil, Turkish) in the application.
- Updated validation messages across multiple languages to correct formatting issues and improve clarity, including Arabic, English, Spanish, French, Hindi, Japanese, Norwegian, and Chinese.
- Removed obsolete Norwegian language files to streamline localization efforts.
- Improved the language selection interface in the form customization component.
These changes aim to enhance user experience by providing better language support and clearer validation feedback.
2024-12-09 12:47:01 +01:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
'accepted' => ':attribute kabul edilmelidir.',
|
|
|
|
|
|
'accepted_if' => ':other :value olduğunda :attribute kabul edilmelidir.',
|
|
|
|
|
|
'active_url' => ':attribute geçerli bir URL olmalıdır.',
|
|
|
|
|
|
'after' => ':attribute, :date tarihinden sonra olmalıdır.',
|
|
|
|
|
|
'after_or_equal' => ':attribute, :date tarihinden sonra veya aynı tarihte olmalıdır.',
|
|
|
|
|
|
'alpha' => ':attribute sadece harflerden oluşmalıdır.',
|
|
|
|
|
|
'alpha_dash' => ':attribute sadece harfler, rakamlar, tireler ve alt çizgilerden oluşmalıdır.',
|
|
|
|
|
|
'alpha_num' => ':attribute sadece harfler ve rakamlardan oluşmalıdır.',
|
|
|
|
|
|
'array' => ':attribute bir dizi olmalıdır.',
|
|
|
|
|
|
'before' => ':attribute, :date tarihinden önce olmalıdır.',
|
|
|
|
|
|
'before_or_equal' => ':attribute, :date tarihinden önce veya aynı tarihte olmalıdır.',
|
|
|
|
|
|
'between' => [
|
|
|
|
|
|
'array' => ':attribute :min ile :max arasında öğe içermelidir.',
|
|
|
|
|
|
'file' => ':attribute :min ile :max kilobayt arasında olmalıdır.',
|
|
|
|
|
|
'numeric' => ':attribute :min ile :max arasında olmalıdır.',
|
|
|
|
|
|
'string' => ':attribute :min ile :max karakter arasında olmalıdır.',
|
|
|
|
|
|
],
|
|
|
|
|
|
'boolean' => ':attribute alanı doğru veya yanlış olmalıdır.',
|
|
|
|
|
|
'confirmed' => ':attribute doğrulaması eşleşmiyor.',
|
|
|
|
|
|
'current_password' => 'Şifre yanlış.',
|
|
|
|
|
|
'date' => ':attribute geçerli bir tarih olmalıdır.',
|
|
|
|
|
|
'date_equals' => ':attribute, :date ile aynı tarihte olmalıdır.',
|
|
|
|
|
|
'date_format' => ':attribute, :format formatına uygun olmalıdır.',
|
|
|
|
|
|
'declined' => ':attribute reddedilmelidir.',
|
|
|
|
|
|
'declined_if' => ':other :value olduğunda :attribute reddedilmelidir.',
|
|
|
|
|
|
'different' => ':attribute ve :other birbirinden farklı olmalıdır.',
|
|
|
|
|
|
'digits' => ':attribute :digits basamaklı olmalıdır.',
|
|
|
|
|
|
'digits_between' => ':attribute :min ile :max basamak arasında olmalıdır.',
|
|
|
|
|
|
'dimensions' => ':attribute geçersiz resim boyutlarına sahip.',
|
|
|
|
|
|
'distinct' => ':attribute alanı yinelenen bir değere sahip.',
|
|
|
|
|
|
'email' => ':attribute geçerli bir e-posta adresi olmalıdır.',
|
|
|
|
|
|
'ends_with' => ':attribute şunlardan biriyle bitmelidir: :values.',
|
|
|
|
|
|
'enum' => 'Seçilen :attribute geçersiz.',
|
|
|
|
|
|
'exists' => 'Seçilen :attribute geçersiz.',
|
|
|
|
|
|
'file' => ':attribute bir dosya olmalıdır.',
|
|
|
|
|
|
'filled' => ':attribute alanı doldurulmalıdır.',
|
|
|
|
|
|
'gt' => [
|
|
|
|
|
|
'array' => ':attribute, :value öğeden fazla olmalıdır.',
|
|
|
|
|
|
'file' => ':attribute, :value kilobayttan büyük olmalıdır.',
|
|
|
|
|
|
'numeric' => ':attribute, :value değerinden büyük olmalıdır.',
|
|
|
|
|
|
'string' => ':attribute, :value karakterden uzun olmalıdır.',
|
|
|
|
|
|
],
|
|
|
|
|
|
'gte' => [
|
|
|
|
|
|
'array' => ':attribute, :value veya daha fazla öğe içermelidir.',
|
|
|
|
|
|
'file' => ':attribute, :value kilobayt veya daha büyük olmalıdır.',
|
|
|
|
|
|
'numeric' => ':attribute, :value veya daha büyük olmalıdır.',
|
|
|
|
|
|
'string' => ':attribute, :value karakter veya daha uzun olmalıdır.',
|
|
|
|
|
|
],
|
|
|
|
|
|
'image' => ':attribute bir resim olmalıdır.',
|
|
|
|
|
|
'in' => 'Seçilen :attribute geçersiz.',
|
|
|
|
|
|
'in_array' => ':attribute alanı :other içinde mevcut değil.',
|
|
|
|
|
|
'integer' => ':attribute bir tamsayı 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 dizesi olmalıdır.',
|
|
|
|
|
|
'lt' => [
|
|
|
|
|
|
'array' => ':attribute, :value öğeden az olmalıdır.',
|
|
|
|
|
|
'file' => ':attribute, :value kilobayttan küçük olmalıdır.',
|
|
|
|
|
|
'numeric' => ':attribute, :value değerinden küçük olmalıdır.',
|
|
|
|
|
|
'string' => ':attribute, :value karakterden kısa olmalıdır.',
|
|
|
|
|
|
],
|
|
|
|
|
|
'lte' => [
|
|
|
|
|
|
'array' => ':attribute, :value öğeden fazla olmamalıdır.',
|
|
|
|
|
|
'file' => ':attribute, :value kilobayt veya daha küçük olmalıdır.',
|
|
|
|
|
|
'numeric' => ':attribute, :value veya daha küçük olmalıdır.',
|
|
|
|
|
|
'string' => ':attribute, :value karakter veya daha kısa olmalıdır.',
|
|
|
|
|
|
],
|
|
|
|
|
|
'mac_address' => ':attribute geçerli bir MAC adresi olmalıdır.',
|
|
|
|
|
|
'max' => [
|
|
|
|
|
|
'array' => ':attribute en fazla :max öğe içermelidir.',
|
|
|
|
|
|
'file' => ':attribute en fazla :max kilobayt olmalıdır.',
|
|
|
|
|
|
'numeric' => ':attribute en fazla :max olmalıdır.',
|
|
|
|
|
|
'string' => ':attribute en fazla :max karakter olmalıdır.',
|
|
|
|
|
|
],
|
|
|
|
|
|
'mimes' => ':attribute şu dosya türlerinden biri olmalıdır: :values.',
|
|
|
|
|
|
'mimetypes' => ':attribute şu dosya türlerinden biri olmalıdır: :values.',
|
|
|
|
|
|
'min' => [
|
|
|
|
|
|
'array' => ':attribute en az :min öğe içermelidir.',
|
|
|
|
|
|
'file' => ':attribute en az :min kilobayt olmalıdır.',
|
|
|
|
|
|
'numeric' => ':attribute en az :min olmalıdır.',
|
|
|
|
|
|
'string' => ':attribute en az :min karakter olmalıdır.',
|
|
|
|
|
|
],
|
|
|
|
|
|
'multiple_of' => ':attribute, :value\'nin katı olmalıdır.',
|
|
|
|
|
|
'not_in' => 'Seçilen :attribute geçersiz.',
|
|
|
|
|
|
'not_regex' => ':attribute formatı geçersiz.',
|
|
|
|
|
|
'numeric' => ':attribute bir sayı olmalıdır.',
|
|
|
|
|
|
'password' => [
|
|
|
|
|
|
'letters' => ':attribute en az bir harf içermelidir.',
|
|
|
|
|
|
'mixed' => ':attribute en az bir büyük harf ve bir küçük harf içermelidir.',
|
|
|
|
|
|
'numbers' => ':attribute en az bir rakam içermelidir.',
|
|
|
|
|
|
'symbols' => ':attribute en az bir sembol içermelidir.',
|
|
|
|
|
|
'uncompromised' => 'Verilen :attribute bir veri sızıntısında görünmüş. Lütfen farklı bir :attribute seçin.',
|
|
|
|
|
|
],
|
|
|
|
|
|
'present' => ':attribute alanı mevcut olmalıdır.',
|
|
|
|
|
|
'prohibited' => ':attribute alanı yasaktır.',
|
|
|
|
|
|
'prohibited_if' => ':other :value olduğunda :attribute alanı yasaktır.',
|
|
|
|
|
|
'prohibited_unless' => ':other :values içinde olmadığı sürece :attribute alanı yasaktır.',
|
|
|
|
|
|
'prohibits' => ':attribute alanı :other\'ın mevcut olmasını yasaklar.',
|
|
|
|
|
|
'regex' => ':attribute formatı geçersiz.',
|
|
|
|
|
|
'required' => ':attribute alanı gereklidir.',
|
|
|
|
|
|
'required_array_keys' => ':attribute alanı şu girişleri içermelidir: :values.',
|
|
|
|
|
|
'required_if' => ':other :value olduğunda :attribute alanı gereklidir.',
|
|
|
|
|
|
'required_unless' => ':other :values içinde olmadığı sürece :attribute alanı gereklidir.',
|
|
|
|
|
|
'required_with' => ':values mevcut olduğunda :attribute alanı gereklidir.',
|
|
|
|
|
|
'required_with_all' => ':values mevcut olduğunda :attribute alanı gereklidir.',
|
|
|
|
|
|
'required_without' => ':values mevcut olmadığında :attribute alanı gereklidir.',
|
|
|
|
|
|
'required_without_all' => ':values hiçbiri mevcut olmadığında :attribute alanı gereklidir.',
|
|
|
|
|
|
'same' => ':attribute ve :other eşleşmelidir.',
|
|
|
|
|
|
'size' => [
|
|
|
|
|
|
'array' => ':attribute :size öğe içermelidir.',
|
|
|
|
|
|
'file' => ':attribute :size kilobayt olmalıdır.',
|
|
|
|
|
|
'numeric' => ':attribute :size olmalıdır.',
|
|
|
|
|
|
'string' => ':attribute :size karakter olmalıdır.',
|
|
|
|
|
|
],
|
|
|
|
|
|
'starts_with' => ':attribute şunlardan biriyle başlamalıdır: :values.',
|
|
|
|
|
|
'string' => ':attribute bir metin olmalıdır.',
|
|
|
|
|
|
'timezone' => ':attribute geçerli bir saat dilimi olmalıdır.',
|
|
|
|
|
|
'unique' => ':attribute zaten alınmış.',
|
|
|
|
|
|
'uploaded' => ':attribute yüklenemedi.',
|
|
|
|
|
|
'url' => ':attribute geçerli bir URL olmalıdır.',
|
|
|
|
|
|
'uuid' => ':attribute geçerli bir UUID olmalıdır.',
|
|
|
|
|
|
|
|
|
|
|
|
'custom' => [
|
|
|
|
|
|
'attribute-name' => [
|
|
|
|
|
|
'rule-name' => 'custom-message',
|
|
|
|
|
|
],
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
'attributes' => [],
|
|
|
|
|
|
|
|
|
|
|
|
'invalid_json' => 'Geçersiz girdi. Lütfen düzeltin ve tekrar deneyin.',
|
2024-12-18 16:35:09 +01:00
|
|
|
|
'invalid_captcha' => 'Geçersiz CAPTCHA. Lütfen bot olmadığınızı gösterin.',
|
|
|
|
|
|
'complete_captcha' => 'Lütfen CAPTCHA\'yı tamamlayın.',
|
Enhance language support and fix validation messages
- Added support for additional languages (Bengali, Portuguese, Russian, Urdu, Punjabi, German, Javanese, Korean, Vietnamese, Telugu, Marathi, Tamil, Turkish) in the application.
- Updated validation messages across multiple languages to correct formatting issues and improve clarity, including Arabic, English, Spanish, French, Hindi, Japanese, Norwegian, and Chinese.
- Removed obsolete Norwegian language files to streamline localization efforts.
- Improved the language selection interface in the form customization component.
These changes aim to enhance user experience by providing better language support and clearer validation feedback.
2024-12-09 12:47:01 +01:00
|
|
|
|
];
|