Files
citrus/lang/en/pages.php
T

182 lines
6.8 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',
'view' => 'View',
'save' => 'Save',
'cancel' => 'Cancel',
'delete' => 'Delete Page',
'restore' => 'Restore Page',
'force_delete' => 'Force Delete',
// Menu Tree
'menu_tree_title' => 'Menu Structure',
'menu_refresh' => 'Refresh',
'menu_back_to_pages' => 'Back to Pages',
'menu_tree_saved' => 'Menu structure saved successfully.',
// 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',
// Dynamic Template System
'form_section_header_template' => 'Header Template',
'form_section_header_template_desc' => 'Select a dynamic header template for the top of the page',
'header_template_field' => 'Header Template',
'form_section_template_sections' => 'Template Sections',
'form_section_template_sections_desc' => 'Add dynamic template sections for the page',
'template_sections_field' => 'Template Sections',
'section_template_field' => 'Section Template',
'add_template_section' => 'Add Section',
'template_section' => 'Template Section',
'form_section_footer_template' => 'Footer Template',
'form_section_footer_template_desc' => 'Select a dynamic footer template for the bottom of the page',
'footer_template_field' => 'Footer Template',
// Bulk Actions
'bulk_action_duplicate' => 'Duplicate Selected',
'bulk_action_publish' => 'Publish Selected',
'bulk_action_draft' => 'Move to Draft',
'bulk_duplicated_successfully' => ':count page(s) duplicated successfully.',
'bulk_published_successfully' => ':count page(s) published successfully.',
'bulk_drafted_successfully' => ':count page(s) moved to draft successfully.',
];