1<?php 2 3$lang['menu'] = 'Site Backup'; 4 5// Admin page 6$lang['intro'] = 'Select what to include, click <em>Preview</em> to see the file list and total size, then <em>Download tar.gz</em> to receive the archive in your browser.'; 7$lang['warn_title'] = 'Sensitive content warning.'; 8$lang['warn_body'] = 'The archive may contain password hashes (<code>conf/users.auth.php</code>), ACL rules, and any credentials stored in <code>conf/local.php</code> (DB connection strings, SMTP passwords, API keys). Treat the download like a credential.'; 9 10// Fieldset legends 11$lang['fs_content'] = 'Wiki content'; 12$lang['fs_code'] = 'Configuration & code'; 13 14// Checkbox labels 15$lang['opt_pages'] = 'Pages (data/pages)'; 16$lang['opt_media'] = 'Media files (data/media)'; 17$lang['opt_meta'] = 'Page metadata (data/meta)'; 18$lang['opt_media_meta'] = 'Media metadata (data/media_meta)'; 19$lang['opt_attic'] = 'Page revisions (data/attic) - can be large'; 20$lang['opt_media_attic'] = 'Media revisions (data/media_attic)'; 21$lang['opt_index'] = 'Search index (data/index) - rebuildable'; 22$lang['opt_conf'] = 'Configuration (conf/) - includes secrets'; 23$lang['opt_plugins'] = 'Plugins source (lib/plugins/)'; 24$lang['opt_tpl'] = 'Templates source (lib/tpl/)'; 25 26// Buttons 27$lang['btn_preview'] = 'Preview'; 28$lang['btn_download'] = 'Download tar.gz'; 29 30// Preview section 31$lang['preview_head'] = 'Preview'; 32$lang['preview_summary'] = '%d files, %s uncompressed.'; 33$lang['col_section'] = 'Section'; 34$lang['col_files'] = 'Files'; 35$lang['col_size'] = 'Size'; 36$lang['preview_hint'] = 'Click <em>Download tar.gz</em> above to create and download the archive (compressed size will typically be smaller).'; 37 38// Error messages 39$lang['err_post'] = 'Site Backup: download must be submitted via POST.'; 40$lang['err_admin'] = 'Site Backup: admin access required.'; 41$lang['err_empty'] = 'Site Backup: nothing selected.'; 42$lang['err_tmp'] = 'Site Backup: temp directory is not writable: %s'; 43$lang['err_create'] = 'Site Backup: could not create archive: %s'; 44$lang['err_archive'] = 'Site Backup: archive was empty or could not be written.'; 45