1<?php 2/** 3 * English language file 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Nicolas GERARD <gerardnico@gmail.com> 7 */ 8 9// ################################## 10// ############ Admin Page ########## 11// ################################## 12 13$lang['PageRules'] = 'Page Rules'; 14 15//Error Message 16$lang['SameSourceAndTargetAndPage'] = 'The target page and the source page are the same.'; 17$lang['NotInternalOrUrlPage'] = 'The target page don\'t exist and is not a valid URL'; 18$lang['SourcePageExist'] = 'The Source Page exist.'; 19 20//FeedBack Message 21$lang['Saved'] = 'Saved'; 22$lang['Deleted'] = 'Deleted'; 23$lang['Validated'] = 'Validated'; 24 25//Array Header of the Admin Page 26$lang['SourcePage'] = 'Source Page'; 27$lang['TargetPage'] = 'Target Page'; 28$lang['Valid'] = 'Valid'; 29$lang['CreationDate'] = 'Creation Date'; 30$lang['LastRedirectionDate'] = 'Last Redirection Date'; 31$lang['LastReferrer'] = 'Last Referrer'; 32$lang['Never'] = 'Never'; 33$lang['Direct Access'] = 'Direct Access'; 34$lang['TargetPageType'] = 'Target Page Type'; 35$lang['CountOfRedirection'] = 'Count Of Redirection'; 36 37 38 39// Head Titles 40$lang['AddModifyRedirection'] = "Add/Modify Redirection"; 41$lang['ListOfRedirection'] = 'List of Redirections'; 42 43//Explication Message 44$lang['ExplicationValidateRedirection'] = 'A validate redirection don\'t show any warning message. A unvalidated redirection is a proposition which comes from an action "Go to best page".'; 45$lang['ValidateToSuppressMessage'] = "You must approve (validate) the redirection to suppress the message of redirection."; 46 47// Forms Add/Modify Value 48$lang['source_page'] = 'Source Page'; 49$lang['source_page_info'] = 'The full path of the Source Page (Ex: namespace:page)'; 50$lang['target_page'] = 'Target Page'; 51$lang['target_page_info'] = 'The full path of the Target Page (Ex: namespace:page) or an URL (https://gerardnico.com)'; 52$lang['yes'] = 'Yes'; 53$lang['Field'] = 'Field' ; 54$lang['Value'] = 'Value'; 55$lang['Information'] = 'Information'; 56$lang['btn_addmodify'] = 'Add/Modify'; 57 58// ################################## 59// ######### Action Message ######### 60// ################################## 61 62$lang['message_redirected_by_redirect'] = 'The page (%s) doesn\'t exist. You have been redirected automatically to the redirect page.'; 63$lang['message_redirected_to_edit_mode'] = 'This page doesn\'t exist. You have been redirected automatically in the edit mode.'; 64$lang['message_redirected_from_permalink'] = 'You have been transparently redirected to the destination url.'; 65$lang['message_redirected_from_canonical'] = 'You have been redirected from a permanent named link'; 66$lang['message_pagename_exist_one'] = 'The following page(s) exists already in other namespace(s) with the same name part: '; 67$lang['message_redirected_to_startpage'] = 'The page (%s) doesn\'t exist. You have been redirected automatically to the start page of the namespace.'; 68$lang['message_redirected_to_bestpagename'] = 'The page (%s) doesn\'t exist. You have been redirected automatically to the best page.'; 69$lang['message_redirected_to_bestendpagename'] = 'The page (%s) doesn\'t exist. You have been redirected automatically to the best end page name.'; 70$lang['message_redirected_to_bestnamespace'] = 'The page (%s) doesn\'t exist. You have been redirected automatically to the best namespace.'; 71$lang['message_redirected_to_searchengine'] = 'The page (%s) doesn\'t exist. You have been redirected automatically to the search engine.'; 72$lang['message_come_from'] = 'This message was fired by the '; 73 74$lang['SqliteMandatory'] = 'The <a href="https://www.dokuwiki.org/plugin:webcomponent">404 Manager plugin</a> uses the <a href="https://www.dokuwiki.org/plugin:sqlite">sqlite plugin</a> for all new functions above the version <a href="https://github.com/gerardnico/dokuwiki-plugin-webcomponent/blob/master/CHANGES.md#v110-09-07-2016">v1.1.0 (09-07-2016)</a>. You need do install it if you want to use them. See the <a href="https://github.com/gerardnico/dokuwiki-plugin-webcomponent/blob/master/CHANGES.md#v110-09-07-2016">changes file</a> for the list of new functionalities.'; 75 76 77?> 78