1<?php 2/** 3 * English language file 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 */ 7 8$lang['title'] = '%s Management'; 9$lang['redirecttext'] = 'This page is redirected to [[:@ID@]].'; 10$lang['pagemanagement'] = 'page management'; 11 12// rename page = rp 13$lang['rp_title'] = 'Page Rename'; 14$lang['rp_newpage'] = 'New name'; 15$lang['rp_summary'] = 'Reason'; 16$lang['rp_nr'] = 'Don\'t leave redirection'; 17$lang['rp_confirm'] = 'Confirm page rename'; 18 19$lang['rp_oldsummary'] = '(Delete) %s renamed to %s'; 20$lang['rp_oldsummaryx'] = '(Delete) %s renamed to %s (%s)'; 21$lang['rp_newsummary'] = '%s renamed to %s'; 22$lang['rp_newsummaryx'] = '%s renamed to %s (%s)'; 23 24$lang['rp_msg_unconfirmed'] = 'The confirm box must be checked to rename a page.'; 25$lang['rp_msg_old_empty'] = 'The old pagename cannot be empty.'; 26$lang['rp_msg_old_noexist'] = 'The old page %s does not exist.'; 27$lang['rp_msg_new_empty'] = 'The new pagename cannot be empty.'; 28$lang['rp_msg_new_exist'] = 'The new page %s already exists.'; 29$lang['rp_msg_locked'] = 'The page %s is locked now.'; 30$lang['rp_msg_auth'] = 'You are not authorized to edit page %s.'; 31$lang['rp_msg_auth_nr'] = 'You are not authorized to suppress redirect.'; 32$lang['rp_msg_file_conflict'] = 'The new page %s has a conflicting file %s.'; 33$lang['rp_msg_success'] = 'Page %s successfully renamed to %s.'; 34 35// delete page = dp 36$lang['dp_title'] = 'Page Deletion'; 37$lang['dp_purge'] = 'Don\'t create delete history'; 38$lang['dp_confirm'] = 'Confirm page delete'; 39$lang['dp_summary'] = 'Reason'; 40 41$lang['dp_oldsummary'] = 'Deleted'; 42$lang['dp_oldsummaryx'] = 'Deleted (%s)'; 43 44$lang['dp_msg_unconfirmed'] = 'The confirm box must be checked to delete a page.'; 45$lang['dp_msg_old_empty'] = 'The old pagename cannot be empty.'; 46$lang['dp_msg_auth'] = 'You are not authorized to delete page %s.'; 47$lang['dp_msg_auth_new'] = 'You are not authorized to write %s.'; 48$lang['dp_msg_success'] = 'Page %s successfully deleted.'; 49 50//Setup VIM: ex: et ts=2 enc=utf-8 : 51