149 lines
5.3 KiB
PHP
149 lines
5.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
// Navigation
|
|
'nav-home' => 'Home',
|
|
'nav-about' => 'About',
|
|
'nav-services' => 'Services',
|
|
'nav-contact' => 'Contact',
|
|
|
|
// Module labels
|
|
'title' => 'Pages',
|
|
'navigation_label' => 'Pages',
|
|
'model_label' => 'Page',
|
|
'plural_model_label' => 'Pages',
|
|
|
|
// Actions
|
|
'create' => 'Create New Page',
|
|
'edit' => 'Edit Page',
|
|
'delete' => 'Delete Page',
|
|
'restore' => 'Restore Page',
|
|
'force_delete' => 'Force Delete',
|
|
|
|
// Form sections
|
|
'form_section_content' => 'Content',
|
|
'form_section_page_settings' => 'Page Settings',
|
|
'form_section_seo_settings' => 'SEO Settings',
|
|
'form_section_sections' => 'Page Sections',
|
|
'translations_section' => 'Translations',
|
|
|
|
// Form fields
|
|
'title_field' => 'Title',
|
|
'slug_field' => 'URL Slug',
|
|
'content_field' => 'Content',
|
|
'excerpt_field' => 'Excerpt',
|
|
'featured_image_field' => 'Featured Image',
|
|
'author_field' => 'Author',
|
|
'published_at_field' => 'Published At',
|
|
'status_field' => 'Status',
|
|
'parent_field' => 'Parent Page',
|
|
'template_field' => 'Template',
|
|
'sort_order_field' => 'Sort Order',
|
|
'is_homepage_field' => 'Homepage',
|
|
'show_in_menu_field' => 'Show in Menu',
|
|
'meta_title_field' => 'Meta Title',
|
|
'meta_description_field' => 'Meta Description',
|
|
|
|
// Helper texts
|
|
'slug_helper_text' => 'The part that will appear in the URL. Example: about-us',
|
|
'excerpt_helper_text' => 'Page excerpt (maximum 500 characters)',
|
|
'featured_image_helper_text' => 'Select a featured image for the page',
|
|
'published_at_helper_text' => 'If left empty, current date will be used',
|
|
'parent_helper_text' => 'Select to make this page a sub-page of another page',
|
|
'sort_order_helper_text' => 'Display order in menu',
|
|
'is_homepage_helper_text' => 'Set this page as the homepage',
|
|
'show_in_menu_helper_text' => 'Should this page be shown in menu?',
|
|
'meta_title_helper_text' => 'Title for search engines (maximum 60 characters)',
|
|
'meta_description_helper_text' => 'Description for search engines (maximum 160 characters)',
|
|
|
|
// Status options
|
|
'status_draft' => 'Draft',
|
|
'status_published' => 'Published',
|
|
'status_archived' => 'Archived',
|
|
|
|
// Messages
|
|
'created_successfully' => 'Page created successfully.',
|
|
'updated_successfully' => 'Page updated successfully.',
|
|
'deleted_successfully' => 'Page deleted successfully.',
|
|
'restored_successfully' => 'Page restored successfully.',
|
|
|
|
// Table columns
|
|
'table_column_featured_image' => 'Featured Image',
|
|
'table_column_title' => 'Title',
|
|
'table_column_slug' => 'URL Slug',
|
|
'table_column_status' => 'Status',
|
|
'table_column_author' => 'Author',
|
|
'table_column_published_at' => 'Published At',
|
|
'table_column_parent' => 'Parent Page',
|
|
'table_column_template' => 'Template',
|
|
'table_column_is_homepage' => 'Homepage',
|
|
'table_column_show_in_menu' => 'Show in Menu',
|
|
'table_column_sort_order' => 'Sort Order',
|
|
'table_column_created_at' => 'Created At',
|
|
'table_column_updated_at' => 'Updated At',
|
|
|
|
// Template options
|
|
'template_default' => 'Default',
|
|
'template_landing' => 'Landing Page',
|
|
'template_blog' => 'Blog',
|
|
'template_contact' => 'Contact',
|
|
|
|
// Copy message
|
|
'copy_url_message' => 'URL copied',
|
|
|
|
// Validation messages
|
|
'title_required' => 'The title field is required.',
|
|
'slug_required' => 'The URL slug field is required.',
|
|
'slug_unique' => 'This URL slug is already taken.',
|
|
'content_required' => 'The content field is required.',
|
|
|
|
// Section Builder
|
|
'sections_field' => 'Page Sections',
|
|
'sections_helper_text' => 'Add dynamic sections to your page',
|
|
'section_type' => 'Section Type',
|
|
'section_type_helper' => 'Select the type of section you want to add',
|
|
'section_data' => 'Section Data',
|
|
'section_data_helper' => 'Enter the required data for this section',
|
|
'section_add' => 'Add New Section',
|
|
|
|
// Section Types
|
|
'section_type_hero' => 'Hero (Main Banner)',
|
|
'section_type_features' => 'Features',
|
|
'section_type_stats' => 'Statistics',
|
|
'section_type_cta' => 'Call to Action',
|
|
'section_type_content' => 'Content',
|
|
'section_type_gallery' => 'Gallery',
|
|
'section_type_testimonials' => 'Testimonials',
|
|
'section_type_team' => 'Team',
|
|
'section_type_pricing' => 'Pricing',
|
|
'section_type_faq' => 'FAQ',
|
|
'section_type_contact' => 'Contact',
|
|
'section_type_custom' => 'Custom',
|
|
|
|
// Section Data Fields
|
|
'section_data_key' => 'Key',
|
|
'section_data_key_helper' => 'Data key (e.g: title, subtitle, image)',
|
|
'section_data_value_type' => 'Value Type',
|
|
'section_data_value' => 'Value',
|
|
'section_data_add_field' => 'Add New Field',
|
|
|
|
// Value Types
|
|
'value_type_text' => 'Text',
|
|
'value_type_textarea' => 'Long Text',
|
|
'value_type_html' => 'HTML',
|
|
'value_type_markdown' => 'Markdown',
|
|
'value_type_richtext' => 'Rich Text',
|
|
'value_type_image' => 'Image',
|
|
'value_type_file' => 'File',
|
|
'value_type_url' => 'URL',
|
|
'value_type_email' => 'Email',
|
|
'value_type_phone' => 'Phone',
|
|
'value_type_number' => 'Number',
|
|
'value_type_boolean' => 'Yes/No',
|
|
'value_type_color' => 'Color',
|
|
'value_type_date' => 'Date',
|
|
'value_type_datetime' => 'Date & Time',
|
|
'value_type_array' => 'Array',
|
|
'value_type_json' => 'JSON',
|
|
];
|