xref: /plugin/hideip/lang/en/lang.php (revision 4c7d65e99da3c1301827c480a6705f5e5b6083b7)
1<?php
2$lang['menu']                  = 'Hide IP';
3
4// Admin page intro
5$lang['intro_rewrite']         = 'This page rewrites historical IP addresses on disk to %s.';
6$lang['intro_realtime']        = 'New edits are already anonymised by the action component of this plugin (loads on every request).';
7$lang['intro_preserved']       = 'Timestamps and authorship are preserved.';
8
9// Warning box
10$lang['warn_heading']          = 'This action is destructive.';
11$lang['warn_data']             = 'Real IP addresses recorded in page and media changelogs and in page metadata will be replaced and cannot be recovered from these files.';
12$lang['warn_attic']            = 'The %s revision archives are not modified — if your wiki retains those, IPs from saved revisions remain inside them.';
13$lang['warn_backup']           = 'Take a backup with the Site Backup plugin first if you want a recovery point.';
14
15// Buttons
16$lang['btn_preview']           = 'Preview (count only)';
17$lang['btn_scrub']             = 'Scrub now';
18
19// Error messages
20$lang['err_post_only']         = 'Hide IP: scrub must be submitted via POST.';
21$lang['err_admin_required']    = 'Hide IP: admin access required.';
22
23// Section labels
24$lang['section_page_changes']  = 'Page changelogs (data/meta/*.changes)';
25$lang['section_media_changes'] = 'Media changelogs (data/media_meta/*.changes)';
26$lang['section_page_meta']     = 'Page metadata (data/meta/*.meta)';
27
28// Result headings
29$lang['heading_preview']       = 'Preview';
30$lang['heading_scrub_done']    = 'Scrub complete';
31
32// Result summary lines (%1$d = IP slots, %2$d = files)
33$lang['done_summary']          = 'Done. Rewrote %1$d IP slot(s) across %2$d file(s).';
34$lang['preview_summary']       = 'Would rewrite %1$d IP slot(s) across %2$d file(s).';
35
36// Table column headers
37$lang['col_section']           = 'Section';
38$lang['col_files']             = 'Files affected';
39$lang['col_slots_rewritten']   = 'IP slots rewritten';
40$lang['col_slots_pending']     = 'IP slots to rewrite';
41$lang['col_errors']            = 'Errors';
42$lang['errors_heading']        = 'Errors';
43