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