Scratchpads V1

This commit is contained in:
2026-01-09 09:26:39 +01:00
parent 16a07701ee
commit 0948f50d76
15 changed files with 718 additions and 27 deletions

View File

@@ -22,7 +22,7 @@ $lang['settings'] = 'luxtools-Einstellungen';
$lang['legend'] = 'Einstellungen';
$lang['btn_save'] = 'Speichern';
$lang['saved'] = 'Einstellungen gespeichert.';
$lang['err_save'] = 'Einstellungen konnten nicht gespeichert werden. Bitte Schreibrechte für conf/plugins/ prüfen.';
$lang['err_save'] = 'Einstellungen konnten nicht gespeichert werden. Bitte Schreibrechte für conf/local.php prüfen.';
$lang['err_security'] = 'Sicherheits-Token ungültig. Bitte erneut versuchen.';
$lang['paths'] = 'Erlaubte Basis-Pfade (eine pro Zeile oder komma-separiert).';

View File

@@ -22,13 +22,21 @@ $lang['settings'] = 'luxtools settings';
$lang['legend'] = 'Settings';
$lang['btn_save'] = 'Save';
$lang['saved'] = 'Settings saved.';
$lang['err_save'] = 'Could not save settings. Please check write permissions for conf/plugins/.';
$lang['err_save'] = 'Could not save settings. Please check write permissions for conf/local.php.';
$lang['err_security'] = 'Security token mismatch. Please retry.';
$lang['paths'] = 'Allowed base paths (one per line or comma-separated).';
$lang['scratchpad_paths'] = 'Scratchpad files (one per line). Each file path must include the extension. Use a following A> line to set the pad name used in the wiki.';
$lang['allow_in_comments'] = 'Whether to allow the files syntax to be used in comments.';
$lang['defaults'] = 'Default options. Use the same syntax as in inline configuration.';
$lang['extensions'] = 'Comma-separated list of allowed file extensions to list.';
$lang['thumb_placeholder'] = 'MediaManager ID for the gallery thumbnail placeholder.';
$lang['gallery_thumb_scale'] = 'Gallery thumbnail scale factor. Use 2 for sharper thumbnails on HiDPI screens (still displayed as 150×150).';
$lang['open_service_url'] = 'Local client service URL for the {{open>...}} button (e.g. http://127.0.0.1:8765).';
$lang['scratchpad_edit'] = 'Edit scratchpad';
$lang['scratchpad_save'] = 'Save';
$lang['scratchpad_cancel'] = 'Cancel';
$lang['scratchpad_err_nopath'] = 'Scratchpad path missing';
$lang['scratchpad_err_badpath'] = 'Invalid scratchpad path';
$lang['scratchpad_err_unknown'] = 'Unknown scratchpad pad name';

View File

@@ -1,6 +1,7 @@
<?php
$lang['paths'] = 'Allowed base paths (one per line or comma-separated).';
$lang['scratchpad_paths'] = 'Scratchpad files (one per line). Each file path must include the extension; use a following A> line to set the pad name used in the wiki.';
$lang['allow_in_comments'] = 'Whether to allow the files syntax to be used in comments.';
$lang['defaults'] = 'Default options. Use the same syntax as in inline configuration';
$lang['extensions'] = 'Comma-separated list of allowed file extensions to list';