Arabic language added
This commit is contained in:
24
lang/ar/datatables.php
Normal file
24
lang/ar/datatables.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
return [
|
||||
'sEmptyTable' => 'لا تتوفر بيانات في الجدول',
|
||||
'sInfo' => 'عرض _START_ إلى _END_ من إجمالي _TOTAL_ إدخال',
|
||||
'sInfoEmpty' => 'عرض 0 إلى 0 من إجمالي 0 إدخال',
|
||||
'sInfoFiltered' => '(منتقاة من إجمالي _MAX_ إدخال)',
|
||||
'sInfoPostFix' => '',
|
||||
'sInfoThousands' => ',',
|
||||
'sLengthMenu' => '_MENU_ سجل لكل صفحة',
|
||||
'sLoadingRecords' => 'جارٍ التحميل...',
|
||||
'sProcessing' => 'جارٍ المعالجة...',
|
||||
'sSearch' => 'بحث:',
|
||||
'sZeroRecords' => 'لم يتم العثور على سجلات مطابقة',
|
||||
'oPaginate' => [
|
||||
'sFirst' => 'الأول',
|
||||
'sLast' => 'الأخير',
|
||||
'sNext' => 'التالي',
|
||||
'sPrevious' => 'السابق',
|
||||
],
|
||||
'oAria' => [
|
||||
'sSortAscending' => ': تفعيل لفرز العمود تصاعديًا',
|
||||
'sSortDescending' => ': تفعيل لفرز العمود تنازليًا',
|
||||
],
|
||||
];
|
1695
lang/ar/lang.php
Normal file
1695
lang/ar/lang.php
Normal file
File diff suppressed because it is too large
Load Diff
19
lang/ar/pagination.php
Normal file
19
lang/ar/pagination.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« السابق',
|
||||
'next' => 'التالي »',
|
||||
|
||||
];
|
22
lang/ar/passwords.php
Normal file
22
lang/ar/passwords.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reminder Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'password' => 'يجب أن تحتوي كلمات المرور على الأقل ستة أحرف وتتطابق مع التأكيد.',
|
||||
'user' => 'لا يمكننا العثور على مستخدم بهذا البريد الإلكتروني.',
|
||||
'token' => 'رمز إعادة تعيين كلمة المرور غير صالح.',
|
||||
'sent' => 'لقد أرسلنا رابط إعادة تعيين كلمة المرور إلى بريدك الإلكتروني!',
|
||||
'reset' => 'تم إعادة تعيين كلمة المرور الخاصة بك!',
|
||||
|
||||
];
|
108
lang/ar/validation.php
Normal file
108
lang/ar/validation.php
Normal file
@@ -0,0 +1,108 @@
|
||||
<?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.',
|
||||
'alpha' => 'يمكن أن يحتوي :attribute على أحرف فقط.',
|
||||
'alpha_dash' => 'يمكن أن يحتوي :attribute على أحرف وأرقام وشرطات فقط.',
|
||||
'alpha_num' => 'يمكن أن يحتوي :attribute على أحرف وأرقام فقط.',
|
||||
'array' => 'يجب أن يكون :attribute مصفوفة.',
|
||||
'before' => 'يجب أن يكون :attribute تاريخًا قبل :date.',
|
||||
'between' => [
|
||||
'numeric' => 'يجب أن يكون :attribute بين :min و :max.',
|
||||
'file' => 'يجب أن يكون حجم :attribute بين :min و :max كيلوبايت.',
|
||||
'string' => 'يجب أن يكون طول :attribute بين :min و :max أحرف.',
|
||||
'array' => 'يجب أن يحتوي :attribute على عدد بين :min و :max عناصر.',
|
||||
],
|
||||
'boolean' => 'يجب أن تكون قيمة حقل :attribute صحيحة أو خاطئة.',
|
||||
'confirmed' => 'تأكيد :attribute غير مطابق.',
|
||||
'date' => ':attribute ليس تاريخًا صالحًا.',
|
||||
'date_format' => ':attribute لا يتطابق مع الصيغة :format.',
|
||||
'different' => ':attribute و :other يجب أن يكونا مختلفين.',
|
||||
'digits' => 'يجب أن يحتوي :attribute على :digits أرقام.',
|
||||
'digits_between' => 'يجب أن يكون طول :attribute بين :min و :max أرقام.',
|
||||
'email' => ':attribute يجب أن يكون عنوان بريد إلكتروني صالح.',
|
||||
'filled' => 'حقل :attribute مطلوب.',
|
||||
'exists' => ':attribute المحدد غير صالح.',
|
||||
'image' => ':attribute يجب أن يكون صورة.',
|
||||
'in' => ':attribute المحدد غير صالح.',
|
||||
'integer' => 'يجب أن يكون :attribute عددًا صحيحًا.',
|
||||
'ip' => 'يجب أن يكون :attribute عنوان IP صالحًا.',
|
||||
'max' => [
|
||||
'numeric' => 'لا يجب أن يكون :attribute أكبر من :max.',
|
||||
'file' => 'لا يجب أن يتجاوز حجم :attribute :max كيلوبايت.',
|
||||
'string' => 'لا يجب أن يتجاوز طول :attribute :max أحرف.',
|
||||
'array' => 'لا يجب أن يحتوي :attribute على أكثر من :max عناصر.',
|
||||
],
|
||||
'mimes' => 'يجب أن يكون :attribute ملفًا من النوع: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'يجب أن يكون :attribute على الأقل :min.',
|
||||
'file' => 'يجب أن يكون حجم :attribute على الأقل :min كيلوبايت.',
|
||||
'string' => 'يجب أن يكون طول :attribute على الأقل :min أحرف.',
|
||||
'array' => 'يجب أن يحتوي :attribute على الأقل :min عناصر.',
|
||||
],
|
||||
'not_in' => ':attribute المحدد غير صالح.',
|
||||
'numeric' => 'يجب أن يكون :attribute عددًا.',
|
||||
'regex' => 'تنسيق :attribute غير صالح.',
|
||||
'required' => 'حقل :attribute مطلوب.',
|
||||
'required_if' => 'حقل :attribute مطلوب عندما يكون :other هو :value.',
|
||||
'required_with' => 'حقل :attribute مطلوب عندما يكون :values موجودًا.',
|
||||
'required_with_all' => 'حقل :attribute مطلوب عندما يكون :values موجودًا.',
|
||||
'required_without' => 'حقل :attribute مطلوب عندما لا يكون :values موجودًا.',
|
||||
'required_without_all' => 'حقل :attribute مطلوب عندما لا يكون أي من :values موجودًا.',
|
||||
'same' => ':attribute و :other يجب أن يتطابقا.',
|
||||
'size' => [
|
||||
'numeric' => 'يجب أن يكون :attribute بحجم :size.',
|
||||
'file' => 'يجب أن يكون حجم :attribute :size كيلوبايت.',
|
||||
'string' => 'يجب أن يكون طول :attribute :size أحرف.',
|
||||
'array' => 'يجب أن يحتوي :attribute على :size عنصرًا.',
|
||||
],
|
||||
'unique' => ':attribute تم أخذه بالفعل.',
|
||||
'url' => 'تنسيق :attribute غير صالح.',
|
||||
'timezone' => 'يجب أن يكون :attribute منطقة صالحة.',
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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' => 'رسالة مخصصة',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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' => [
|
||||
'email' => 'عنوان البريد الإلكتروني',
|
||||
'password' => 'كلمة المرور',
|
||||
// Add more attribute translations in Arabic as needed
|
||||
],
|
||||
|
||||
];
|
Reference in New Issue
Block a user