- Fix template variable replacement in guide pages by removing {{}} brackets
- Escape code blocks in guide markdown to prevent template processing
- Completely rewrite guide documentation with comprehensive CMS features
- Add bilingual guide support (English/Dutch) with detailed examples
- Enhance CodePressCMS core with improved guide page handling
- Update template system with better layout and footer components
- Improve language files with additional translations
- Update configuration with enhanced theme and language settings
Resolves issue where guide pages were showing replaced template variables
instead of displaying them as documentation examples.
39 lines
1.3 KiB
PHP
39 lines
1.3 KiB
PHP
<?php
|
|
return [
|
|
'site_title' => 'CodePress',
|
|
'home' => 'Home',
|
|
'search' => 'Search',
|
|
'search_placeholder' => 'Search...',
|
|
'search_button' => 'Search',
|
|
'welcome' => 'Welcome',
|
|
'created' => 'Created',
|
|
'modified' => 'Modified',
|
|
'author' => 'Author',
|
|
'manual' => 'Manual',
|
|
'no_content' => 'No content found',
|
|
'no_results' => 'No results found',
|
|
'results_found' => 'results found',
|
|
'breadcrumb_home' => 'Home',
|
|
'file_details' => 'File details',
|
|
'guide' => 'Guide',
|
|
'powered_by' => 'Powered by',
|
|
't_powered_by' => 'Powered by',
|
|
'directory_empty' => 'This directory is empty',
|
|
'page_not_found' => 'Page Not Found',
|
|
'page_not_found_text' => 'The page you are looking for does not exist.',
|
|
'mappen' => 'Folders',
|
|
'paginas' => 'Pages',
|
|
'author_website' => 'Author website',
|
|
'author_git' => 'Author Git',
|
|
'plugins' => 'Plugins',
|
|
'templates' => 'Templates',
|
|
'layouts' => 'Layouts',
|
|
'sidebar_content' => 'Sidebar + Content',
|
|
'content_only' => 'Content Only',
|
|
'sidebar_only' => 'Sidebar Only',
|
|
'content_sidebar' => 'Content + Sidebar',
|
|
'plugin_development' => 'Plugin Development',
|
|
'template_system' => 'Template System',
|
|
'mqtt_tracking' => 'MQTT Tracking',
|
|
'real_time_analytics' => 'Real-time Analytics'
|
|
]; |