feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
+45
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'ارتباط',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'ربط :label',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'السجلات',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'associate' => [
|
||||
'label' => 'ربط',
|
||||
],
|
||||
|
||||
'associate_another' => [
|
||||
'label' => 'ربط وبدء ربط المزيد',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'associated' => [
|
||||
'title' => 'تم الربط',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'إرفاق',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'إرفاق :label',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => 'سجل',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'attach' => [
|
||||
'label' => 'إرفاق',
|
||||
],
|
||||
|
||||
'attach_another' => [
|
||||
'label' => 'إرفاق وبدء إرفاق المزيد',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'attached' => [
|
||||
'title' => 'تم الإرفاق',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+37
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'إضافة :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'إضافة :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create' => [
|
||||
'label' => 'إضافة',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'إضافة وبدء إضافة المزيد',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'created' => [
|
||||
'title' => 'تمت الإضافة',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'حذف',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'حذف :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'حذف',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'تم الحذف',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'حذف المحدد',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'حذف المحدد :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'حذف',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'تم الحذف',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => 'تم حذف :count من :total',
|
||||
'missing_authorization_failure_message' => 'ليس لديك إذن لحذف :count.',
|
||||
'missing_processing_failure_message' => ':count لم يتم حذفه.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'لم يتم حذف أي شيء',
|
||||
'missing_authorization_failure_message' => 'ليس لديك إذن لحذف :count.',
|
||||
'missing_processing_failure_message' => 'لم يتم حذف :count.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'فصل',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'فصل :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'فصل',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'تم الفصل',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'فصل المحدد',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'فصل المحدد :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => 'فصل',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => 'تم الفصل',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'فك الارتباط',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'فك ربط :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'فك الارتباط',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'تم فك الارتباط',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'فك ارتباط المحدد',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'فك ارتباط :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => 'فك الارتباط',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => 'تم فك الارتباط',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'تعديل',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'تعديل :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'حفظ التغييرات',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'تم الحفظ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+94
@@ -0,0 +1,94 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'تصدير :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'تصدير :label',
|
||||
|
||||
'form' => [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'label' => 'الأعمدة',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'تحديد الكل',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'إلغاء تحديد الكل',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'is_enabled' => [
|
||||
'label' => ':column مفعل',
|
||||
],
|
||||
|
||||
'label' => [
|
||||
'label' => 'تسمية :column',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'export' => [
|
||||
'label' => 'تصدير',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'اكتمل التصدير',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_csv' => [
|
||||
'label' => 'تنزيل .csv',
|
||||
],
|
||||
|
||||
'download_xlsx' => [
|
||||
'label' => 'تنزيل .xlsx',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'التصدير كبير جداً',
|
||||
'body' => 'لا يمكنك تصدير أكثر من صف واحد في المرة الواحدة.|لا يمكنك تصدير أكثر من :count صف في المرة الواحدة.',
|
||||
],
|
||||
|
||||
'no_columns' => [
|
||||
'title' => 'لم يتم تحديد أعمدة',
|
||||
'body' => 'يرجى تحديد عمود واحد على الأقل للتصدير.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'بدأ التصدير',
|
||||
'body' => 'بدأ التصدير الخاص بك وسيتم معالجة صف واحد في الخلفية. ستتلقى إشعاراً برابط التنزيل عند الانتهاء.|بدأ التصدير الخاص بك وسيتم معالجة :count صف في الخلفية. ستتلقى إشعاراً برابط التنزيل عند الانتهاء.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'file_name' => 'export-:export_id-:model',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'حذف نهائي',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'حذف نهائي لـ :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'حذف',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'تم الحذف',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'حذف المحدد نهائيا',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'حذف نهائي لـ :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => 'حذف',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => 'تم الحذف',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => 'تم حذف :count من أصل :total',
|
||||
'missing_authorization_failure_message' => 'ليس لديك صلاحية لحذف :count.',
|
||||
'missing_processing_failure_message' => 'تعذر حذف :count.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => 'فشل في الحذف',
|
||||
'missing_authorization_failure_message' => 'ليس لديك صلاحية لحذف :count.',
|
||||
'missing_processing_failure_message' => 'تعذر حذف :count.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'trigger' => [
|
||||
'label' => 'الإجراءات',
|
||||
],
|
||||
|
||||
];
|
||||
+81
@@ -0,0 +1,81 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'استيراد :label',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'استيراد :label',
|
||||
|
||||
'form' => [
|
||||
|
||||
'file' => [
|
||||
'label' => 'ملف',
|
||||
'placeholder' => 'تحميل ملف CSV',
|
||||
'rules' => [
|
||||
'duplicate_columns' => '{0} يجب ألا يحتوي الملف على أكثر من عنوان عمود فارغ واحد.|{1,*} يجب ألا يحتوي الملف على عناوين أعمدة مكررة: :columns.',
|
||||
],
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
'label' => 'الأعمدة',
|
||||
'placeholder' => 'اختر عمود',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_example' => [
|
||||
'label' => 'تنزيل مثال لملف CSV',
|
||||
],
|
||||
|
||||
'import' => [
|
||||
'label' => 'استيراد',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => 'اكتمل الاستيراد',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_failed_rows_csv' => [
|
||||
'label' => 'تنزيل معلومات حول الصف الفاشل|تنزيل معلومات حول الصفوف الفاشلة',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => 'ملف CSV الذي تم تحميله كبير جدًا',
|
||||
'body' => 'لا تستطيع استيراد أكثر من صف واحد في كل مرة.|لا تستطيع استيراد أكثر من :count صف في كل مرة.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => 'بدء الاستيراد',
|
||||
'body' => 'بدأت عملية الاستيراد الخاصة بك وستتم معالجة صف واحد في الخلفية.|بدأت عملية الاستيراد الخاصة بك وستتم معالجة :count صفوف في الخلفية.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'example_csv' => [
|
||||
'file_name' => ':importer-example',
|
||||
],
|
||||
|
||||
'failure_csv' => [
|
||||
'file_name' => 'import-:import_id-:csv_name-failed-rows',
|
||||
'error_header' => 'خطأ',
|
||||
'system_error' => 'خطأ في النظام، يرجى الاتصال بالدعم.',
|
||||
'column_mapping_required_for_new_record' => 'لم يتم تعيين العمود :attribut إلى عمود في الملف، ولكنه مطلوب لإنشاء سجلات جديدة.',
|
||||
],
|
||||
|
||||
];
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'confirmation' => 'هل أنت متأكد من القيام بهذه العملية؟',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'إلغاء',
|
||||
],
|
||||
|
||||
'confirm' => [
|
||||
'label' => 'تأكيد',
|
||||
],
|
||||
|
||||
'submit' => [
|
||||
'label' => 'إرسال',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'تم تجاوز الحد المسموح',
|
||||
'body' => 'يرجى المحاولة مرة أخرى بعد :seconds ثانية.',
|
||||
],
|
||||
|
||||
];
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'نسخة',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'استنساخ :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'replicate' => [
|
||||
'label' => 'نسخ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'replicated' => [
|
||||
'title' => 'تم النسخ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'استعادة',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'استعادة :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'استعادة',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'تمت الاستعادة',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => 'استعادة المحدد',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'استعادة :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => 'استعادة',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => 'تمت الاستعادة',
|
||||
],
|
||||
|
||||
'restored_partial' => [
|
||||
'title' => 'تمت استعادة :count من أصل :total',
|
||||
'missing_authorization_failure_message' => 'ليس لديك صلاحية لاستعادة :count.',
|
||||
'missing_processing_failure_message' => 'تعذر استعادة :count.',
|
||||
],
|
||||
|
||||
'restored_none' => [
|
||||
'title' => 'فشل في الاستعادة',
|
||||
'missing_authorization_failure_message' => 'ليس لديك صلاحية لاستعادة :count.',
|
||||
'missing_processing_failure_message' => 'تعذر استعادة :count.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => 'عرض',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'عرض :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'close' => [
|
||||
'label' => 'إغلاق',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user