complete story 5.1 with qa tests

This commit is contained in:
Naser Mansour
2025-12-27 01:33:05 +02:00
parent 30d0d46566
commit 8e3daddb1d
15 changed files with 1530 additions and 30 deletions
+1
View File
@@ -17,4 +17,5 @@ return [
'clear' => 'مسح',
'unknown' => 'غير معروف',
'currency' => 'شيكل',
'close' => 'إغلاق',
];
+4
View File
@@ -22,4 +22,8 @@ return [
'active' => 'نشط',
'archived' => 'مؤرشف',
],
'post_status' => [
'draft' => 'مسودة',
'published' => 'منشور',
],
];
+38
View File
@@ -0,0 +1,38 @@
<?php
return [
// Index page
'posts' => 'المقالات',
'posts_description' => 'إدارة المقالات والمحتوى القانوني.',
'create_post' => 'إنشاء مقال',
'no_posts' => 'لا توجد مقالات.',
'search_placeholder' => 'البحث في المقالات...',
'last_updated' => 'آخر تحديث',
'created' => 'تاريخ الإنشاء',
// Create/Edit page
'edit_post' => 'تعديل المقال',
'back_to_posts' => 'العودة للمقالات',
'arabic_content' => 'المحتوى العربي',
'english_content' => 'المحتوى الإنجليزي',
'title' => 'العنوان',
'body' => 'المحتوى',
'arabic' => 'عربي',
'english' => 'إنجليزي',
'preview' => 'معاينة',
'save_draft' => 'حفظ كمسودة',
'publish' => 'نشر',
'unpublish' => 'إلغاء النشر',
'save_changes' => 'حفظ التغييرات',
'auto_save_enabled' => 'الحفظ التلقائي مفعل',
// Messages
'post_saved' => 'تم حفظ المقال بنجاح.',
'post_deleted' => 'تم حذف المقال بنجاح.',
// Validation
'title_ar_required' => 'العنوان العربي مطلوب.',
'title_en_required' => 'العنوان الإنجليزي مطلوب.',
'body_ar_required' => 'المحتوى العربي مطلوب.',
'body_en_required' => 'المحتوى الإنجليزي مطلوب.',
];
+1
View File
@@ -17,4 +17,5 @@ return [
'clear' => 'Clear',
'unknown' => 'Unknown',
'currency' => 'ILS',
'close' => 'Close',
];
+4
View File
@@ -22,4 +22,8 @@ return [
'active' => 'Active',
'archived' => 'Archived',
],
'post_status' => [
'draft' => 'Draft',
'published' => 'Published',
],
];
+38
View File
@@ -0,0 +1,38 @@
<?php
return [
// Index page
'posts' => 'Posts',
'posts_description' => 'Manage blog posts and legal content.',
'create_post' => 'Create Post',
'no_posts' => 'No posts found.',
'search_placeholder' => 'Search posts...',
'last_updated' => 'Last Updated',
'created' => 'Created',
// Create/Edit page
'edit_post' => 'Edit Post',
'back_to_posts' => 'Back to Posts',
'arabic_content' => 'Arabic Content',
'english_content' => 'English Content',
'title' => 'Title',
'body' => 'Body',
'arabic' => 'Arabic',
'english' => 'English',
'preview' => 'Preview',
'save_draft' => 'Save Draft',
'publish' => 'Publish',
'unpublish' => 'Unpublish',
'save_changes' => 'Save Changes',
'auto_save_enabled' => 'Auto-save enabled',
// Messages
'post_saved' => 'Post saved successfully.',
'post_deleted' => 'Post deleted successfully.',
// Validation
'title_ar_required' => 'Arabic title is required.',
'title_en_required' => 'English title is required.',
'body_ar_required' => 'Arabic body content is required.',
'body_en_required' => 'English body content is required.',
];