v2.6.2 (Lyra): Thema editor, content editor, unified scanEditorFiles
- Thema editor (thema's net zo bewerkbaar maken als plugins): bestandsbrowser zijbalk, nieuw bestand, uploaden, verwijderen, verplaatsen, SCSS compileren vanuit editor, thema activeren/ verwijderen, nieuw thema met basis-kopie, uniforme thema-structuur - Content editor (content consistent met plugins en thema's): bestandsbrowser zijbalk naast bestaande lijst weergave, nieuw bestand/map, uploaden, verwijderen, verplaatsen, mappen beheer, layout/plugins selectie, git/backup integratie in editor zijbalk - Uniformiteit: scanEditorFiles() unified scanner (scanPluginFiles/scanThemeFiles/scanContentFiles als dunne wrappers) - Media invoegen in editor: ?theme= scope voor media-list endpoint - Bug fix: thema-naam niet overgenomen bij kopiëren - title in theme.json wordt overschreven met nieuwe themanaam - Handleidingen bijgewerkt (thema-beheer.md + content-beheer.md NL/EN) - Release notes: docs/release-notes/v2.6.2.md - Pentest 30/30, WCAG 25/25
This commit is contained in:
@@ -77,7 +77,9 @@ return [
|
||||
// Content page
|
||||
'upload' => 'Upload',
|
||||
'new_folder' => 'Nieuwe map',
|
||||
'new_folder_title' => 'Nieuwe map aanmaken',
|
||||
'new_file' => 'Nieuw bestand',
|
||||
'new_file_title' => 'Nieuw bestand aanmaken',
|
||||
'select_files' => 'Bestanden selecteren',
|
||||
'allowed_types' => 'Toegestaan: JPG, PNG, GIF, WebP, SVG, PDF, ZIP, MP4, WebM, MP3, WAV',
|
||||
'upload_to_folder' => 'Uploaden naar deze map',
|
||||
@@ -88,6 +90,28 @@ return [
|
||||
'col_size' => 'Grootte',
|
||||
'col_modified' => 'Gewijzigd',
|
||||
'col_actions' => 'Acties',
|
||||
|
||||
// Content editor (content-files) — Fase 1-5 van content-consistentie TODO
|
||||
'content_editor' => 'Content editor',
|
||||
'content_files' => 'Content bestanden',
|
||||
'content_no_files' => 'Geen bestanden gevonden.',
|
||||
'content_not_editable' => 'Dit bestandstype kan niet in de editor bewerkt worden.',
|
||||
'content_select_file' => 'Selecteer een bestand uit de zijbalk om te bewerken.',
|
||||
'content_file_path' => 'Bestandspad binnen content',
|
||||
'content_file_path_help' => 'Alleen letters, cijfers, punten, underscores, streepjes en slashes. Submappen worden automatisch aangemaakt. De extensie wordt hieronder gekozen.',
|
||||
'content_upload_help' => 'Bestanden worden geüpload naar content/. Toegestaan: afbeeldingen, video, audio, PDF, ZIP, office docs, CSS, SCSS, JS, JSON, HTML, MD.',
|
||||
'file_type' => 'Bestandstype',
|
||||
'list_view' => 'Lijst weergave',
|
||||
'rename_folder' => 'Map hernoemen',
|
||||
'rename_prefix' => 'Hernoem',
|
||||
'new_name' => 'Nieuwe naam',
|
||||
'git_init' => 'Git init',
|
||||
'git_init_confirm' => 'Git repository initialiseren in content/?',
|
||||
'git_commit' => 'Commit',
|
||||
'git_commit_confirm' => 'Wijzigingen committen naar git?',
|
||||
'git_dirty' => 'niet-committed wijzigingen',
|
||||
'git_clean' => 'schone werkmap',
|
||||
'git_last_commit' => 'laatste commit:',
|
||||
'col_role' => 'Rol',
|
||||
'col_created' => 'Aangemaakt',
|
||||
'no_files_found' => 'Geen bestanden gevonden.',
|
||||
@@ -212,10 +236,32 @@ return [
|
||||
'new_theme_title' => 'Nieuw thema aanmaken',
|
||||
'theme_name' => 'Thema naam',
|
||||
'theme_name_help' => 'Alleen letters, cijfers, underscores en streepjes.',
|
||||
'theme_base' => 'Basis thema',
|
||||
'theme_base_help' => 'Kies een bestaand thema als basis om te kopiëren, of start met een lege uniforme structuur. css_compiled/ wordt niet gekopieerd.',
|
||||
'theme_base_blank' => '(lege structuur)',
|
||||
'name_label' => 'Naam: ',
|
||||
'default_layout_label' => 'Default layout: ',
|
||||
'compile_scss' => 'SCSS compileren',
|
||||
'compile_scss_confirm' => 'SCSS compileren? Dit overschrijft assets/css_compiled/theme.css.',
|
||||
'scss_ok' => 'up-to-date',
|
||||
'scss_stale' => 'verouderd',
|
||||
'scss_compiled_ok' => 'SCSS is gecompileerd en up-to-date',
|
||||
'scss_needs_compile' => 'SCSS source nieuwer dan gecompileerde CSS',
|
||||
'no_themes' => 'Geen thema\'s gevonden.',
|
||||
'theme_default_protected' => 'Default thema - kan niet verwijderd worden',
|
||||
'theme_layouts' => 'Layouts: ',
|
||||
'theme_actions' => 'Thema acties',
|
||||
'confirm_delete_theme' => 'Weet je zeker dat je dit thema wilt verwijderen? Alle bestanden in het thema gaan verloren.',
|
||||
'theme_edit' => 'Thema bewerken: ',
|
||||
'theme_files' => 'Thema bestanden',
|
||||
'theme_no_files' => 'Geen bestanden gevonden.',
|
||||
'theme_new_file' => 'Nieuw bestand',
|
||||
'theme_new_file_title' => 'Nieuw bestand aanmaken',
|
||||
'theme_file_path' => 'Bestandspad binnen thema',
|
||||
'theme_file_path_help' => 'Alleen letters, cijfers, punten, underscores, streepjes en slashes. Submappen worden automatisch aangemaakt. Toegestaan: twig, json, scss, css, js, html, md, php.',
|
||||
'theme_not_editable' => 'Dit bestandstype kan niet in de editor bewerkt worden.',
|
||||
'theme_select_file' => 'Selecteer een bestand uit de zijbalk om te bewerken.',
|
||||
'theme_upload_help' => 'Bestanden worden geüpload naar assets/ van dit thema. Toegestaan: afbeeldingen, video, audio, PDF, ZIP, CSS, SCSS, JS, JSON, HTML, MD, TWIG, fonts.',
|
||||
|
||||
// Update
|
||||
'system_update' => 'Systeem Update',
|
||||
|
||||
Reference in New Issue
Block a user