47 lines
1.6 KiB
PHP
47 lines
1.6 KiB
PHP
<?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.',
|
|
'post_status_updated' => 'Post status updated successfully.',
|
|
'post_not_found' => 'Post not found.',
|
|
|
|
// Delete Modal
|
|
'delete_post' => 'Delete Post',
|
|
'delete_post_warning' => 'This action is permanent and cannot be undone. The post will be permanently removed from the database.',
|
|
'deleting_post' => 'You are about to delete: :title',
|
|
'delete_permanently' => 'Delete Permanently',
|
|
|
|
// 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.',
|
|
];
|