43 lines
1.4 KiB
PHP
43 lines
1.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
// Navigation
|
|
'navigation_group' => 'Templates',
|
|
'navigation_label' => 'Menu Templates',
|
|
'model_label' => 'Menu Template',
|
|
'plural_model_label' => 'Menu Templates',
|
|
|
|
// Sections
|
|
'section_general' => 'General Information',
|
|
'section_structure' => 'Menu Structure',
|
|
'section_structure_desc' => 'You can edit the menu structure using drag-and-drop or write code in JSON format.',
|
|
|
|
// Form Fields
|
|
'field_title' => 'Title',
|
|
'field_html_content' => 'Menu HTML Code',
|
|
'field_html_content_help' => 'You can add the menu structure to the HTML using the {menu} placeholder. The menu will be automatically generated with page-based rendering.',
|
|
'field_is_active' => 'Active',
|
|
|
|
// Table Columns
|
|
'column_title' => 'Title',
|
|
'column_is_active' => 'Active',
|
|
'column_created_at' => 'Created At',
|
|
'column_updated_at' => 'Updated At',
|
|
'column_deleted_at' => 'Deleted At',
|
|
|
|
// Actions
|
|
'create' => 'New Menu Template',
|
|
'edit' => 'Edit Menu Template',
|
|
'view' => 'View Menu Template',
|
|
'delete' => 'Delete',
|
|
'restore' => 'Restore',
|
|
'force_delete' => 'Force Delete',
|
|
|
|
// Messages
|
|
'created_successfully' => 'Menu template created successfully.',
|
|
'updated_successfully' => 'Menu template updated successfully.',
|
|
'deleted_successfully' => 'Menu template deleted successfully.',
|
|
'restored_successfully' => 'Menu template restored successfully.',
|
|
];
|
|
|