pelican-panel-mirror/lang/ar/validation.php
Charles 0ccb248d91
Add Languages (#1499)
Co-authored-by: Boy132 <mail@boy132.de>
2025-07-08 21:16:11 -04:00

102 lines
5.2 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 ليس عنوان URL صالحًا.',
'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.',
'between' => [
'numeric' => 'يجب أن يكون :attribute بين :min و :max.',
'file' => 'يجب أن يكون حجم :attribute بين :min و :max كيلوبايت.',
'string' => 'يجب أن يكون طول :attribute بين :min و :max حرفًا.',
'array' => 'يجب أن يحتوي :attribute على :min إلى :max عناصر.',
],
'confirmed' => 'تأكيد :attribute غير متطابق.',
'date' => ':attribute ليس تاريخًا صالحًا.',
'date_format' => ':attribute لا يتطابق مع الشكل :format.',
'different' => 'يجب أن يكون :attribute و :other مختلفين.',
'digits' => 'يجب أن يكون :attribute :digits أرقام.',
'digits_between' => 'يجب أن يكون :attribute بين :min و :max رقمًا.',
'dimensions' => ':attribute يحتوي على أبعاد صورة غير صالحة.',
'email' => 'يجب أن يكون :attribute عنوان بريد إلكتروني صالحًا.',
'file' => 'يجب أن يكون :attribute ملفًا.',
'filled' => 'حقل :attribute إلزامي.',
'image' => 'يجب أن يكون :attribute صورة.',
'in_array' => 'حقل :attribute غير موجود في :other.',
'integer' => 'يجب أن يكون :attribute عددًا صحيحًا.',
'ip' => 'يجب أن يكون :attribute عنوان IP صالحًا.',
'json' => 'يجب أن يكون :attribute نصًا من نوع JSON صالحًا.',
'max' => [
'numeric' => 'قد لا يكون :attribute أكبر من :max.',
'file' => 'قد لا يكون حجم :attribute أكبر من :max كيلوبايت.',
'string' => 'قد لا يكون طول :attribute أكثر من :max حرفًا.',
'array' => 'قد لا يحتوي :attribute على أكثر من :max عناصر.',
],
'mimes' => 'يجب أن يكون :attribute ملفًا من نوع: :values.',
'mimetypes' => 'يجب أن يكون :attribute ملفًا من نوع: :values.',
'min' => [
'numeric' => 'يجب أن يكون :attribute على الأقل :min.',
'file' => 'يجب أن يكون حجم :attribute على الأقل :min كيلوبايت.',
'string' => 'يجب أن يكون طول :attribute على الأقل :min حرفًا.',
'array' => 'يجب أن يحتوي :attribute على الأقل :min عناصر.',
],
'numeric' => 'يجب أن يكون :attribute رقمًا.',
'regex' => 'تنسيق :attribute غير صالح.',
'required_with_all' => 'حقل :attribute مطلوب عند توفر كل من :values.',
'same' => 'يجب أن يتطابق :attribute و :other.',
'size' => [
'numeric' => 'يجب أن يكون :attribute :size.',
'file' => 'يجب أن يكون حجم :attribute :size كيلوبايت.',
'string' => 'يجب أن يكون طول :attribute :size حرفًا.',
'array' => 'يجب أن يحتوي :attribute على :size عناصر.',
],
'string' => 'يجب أن يكون :attribute نصًا.',
'timezone' => 'يجب أن تكون :attribute منطقة زمنية صالحة.',
'url' => 'تنسيق :attribute غير صالح.',
/*
|--------------------------------------------------------------------------
| 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' => [],
// Internal validation logic for Panel
'internal' => [
'variable_value' => 'متغير :env',
'invalid_password' => 'كلمة المرور التي تم تقديمها غير صالحة لهذا الحساب.',
],
];