xref: /plugin/sitebackup/lang/en/lang.php (revision c874c2c0a464f5afa1b4711c21d732aad51b8080)
129ed7b46Stracker-user<?php
2*c874c2c0Stracker-user
329ed7b46Stracker-user$lang['menu'] = 'Site Backup';
4*c874c2c0Stracker-user
5*c874c2c0Stracker-user// Admin page
6*c874c2c0Stracker-user$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*c874c2c0Stracker-user$lang['warn_title'] = 'Sensitive content warning.';
8*c874c2c0Stracker-user$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*c874c2c0Stracker-user
10*c874c2c0Stracker-user// Fieldset legends
11*c874c2c0Stracker-user$lang['fs_content'] = 'Wiki content';
12*c874c2c0Stracker-user$lang['fs_code']    = 'Configuration &amp; code';
13*c874c2c0Stracker-user
14*c874c2c0Stracker-user// Checkbox labels
15*c874c2c0Stracker-user$lang['opt_pages']       = 'Pages (data/pages)';
16*c874c2c0Stracker-user$lang['opt_media']       = 'Media files (data/media)';
17*c874c2c0Stracker-user$lang['opt_meta']        = 'Page metadata (data/meta)';
18*c874c2c0Stracker-user$lang['opt_media_meta']  = 'Media metadata (data/media_meta)';
19*c874c2c0Stracker-user$lang['opt_attic']       = 'Page revisions (data/attic) - can be large';
20*c874c2c0Stracker-user$lang['opt_media_attic'] = 'Media revisions (data/media_attic)';
21*c874c2c0Stracker-user$lang['opt_index']       = 'Search index (data/index) - rebuildable';
22*c874c2c0Stracker-user$lang['opt_conf']        = 'Configuration (conf/) - includes secrets';
23*c874c2c0Stracker-user$lang['opt_plugins']     = 'Plugins source (lib/plugins/)';
24*c874c2c0Stracker-user$lang['opt_tpl']         = 'Templates source (lib/tpl/)';
25*c874c2c0Stracker-user
26*c874c2c0Stracker-user// Buttons
27*c874c2c0Stracker-user$lang['btn_preview']  = 'Preview';
28*c874c2c0Stracker-user$lang['btn_download'] = 'Download tar.gz';
29*c874c2c0Stracker-user
30*c874c2c0Stracker-user// Preview section
31*c874c2c0Stracker-user$lang['preview_head']    = 'Preview';
32*c874c2c0Stracker-user$lang['preview_summary'] = '%d files, %s uncompressed.';
33*c874c2c0Stracker-user$lang['col_section']     = 'Section';
34*c874c2c0Stracker-user$lang['col_files']       = 'Files';
35*c874c2c0Stracker-user$lang['col_size']        = 'Size';
36*c874c2c0Stracker-user$lang['preview_hint']    = 'Click <em>Download tar.gz</em> above to create and download the archive (compressed size will typically be smaller).';
37*c874c2c0Stracker-user
38*c874c2c0Stracker-user// Error messages
39*c874c2c0Stracker-user$lang['err_post']    = 'Site Backup: download must be submitted via POST.';
40*c874c2c0Stracker-user$lang['err_admin']   = 'Site Backup: admin access required.';
41*c874c2c0Stracker-user$lang['err_empty']   = 'Site Backup: nothing selected.';
42*c874c2c0Stracker-user$lang['err_tmp']     = 'Site Backup: temp directory is not writable: %s';
43*c874c2c0Stracker-user$lang['err_create']  = 'Site Backup: could not create archive: %s';
44*c874c2c0Stracker-user$lang['err_archive'] = 'Site Backup: archive was empty or could not be written.';
45