mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
37 lines
2.1 KiB
PHP
37 lines
2.1 KiB
PHP
<?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 يجب أن يكون مقبولاً.',
|
|
'active_url' => ':attribute ليس عنوان ويب صحيح.',
|
|
'after' => ':attribute يجب أن يكون تاريخ بعد :date.',
|
|
'after_or_equal' => ':attribute يجب أن يكون أكبر من أو يساوي :date.',
|
|
'alpha' => ':attribute يجب أن يحتوي على حروف فقط.',
|
|
'alpha_dash' => ':attribute يجب أن يحتوي على حروف وأرقام وعلامات خاصة.',
|
|
'alpha_num' => ':attribute يجب أن يحتوي على حروف وأرقام فقط.',
|
|
'array' => ':attribute يجب أن يكون مصفوفة.',
|
|
'before' => ':attribute يجب أن يكون قبل تاريخ :date.',
|
|
'before_or_equal' => ':attribute يجب أن يكون أكبر من أو يساوي :date.',
|
|
'date' => ':attribute ليس تاريخ صحيح.',
|
|
'date_format' => ':attribute لا يناسب صيغة التاريخ :format.',
|
|
'distinct' => ':attribute به قيمة مكررة.',
|
|
'email' => ':attribute يجب أن يكون بريد إلكتروني صحيح.',
|
|
'filled' => ':attribute لا يمكن أن يكون فارغاً.',
|
|
'required' => ':attribute مطلوب.',
|
|
'string' => ':attribute يجب أن يكون نصاً.',
|
|
'unique' => ':attribute موجود بالفعل.',
|
|
'uploaded' => 'فشل تحميل :attribute.',
|
|
'url' => 'صيغة عنوان :attribute غير صحيحة.',
|
|
];
|