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['AdminPageName'] = '404Manager Plugin';
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// Head Titles
38$lang['AddModifyRedirection'] = "Add/Modify Redirection";
39$lang['ListOfRedirection'] = 'List of Redirections';
40
41//Explication Message
42$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".';
43$lang['ValidateToSuppressMessage'] = "You must approve (validate) the redirection to suppress the message of redirection.";
44
45// Forms Add/Modify Value
46$lang['source_page'] = 'Source Page';
47$lang['source_page_info'] = 'The full path of the Source Page (Ex: namespace:page)';
48$lang['target_page'] = 'Target Page';
49$lang['target_page_info'] = 'The full path of the Target Page (Ex: namespace:page) or an URL (https://gerardnico.com)';
50$lang['yes'] = 'Yes';
51$lang['Field'] = 'Field' ;
52$lang['Value'] = 'Value';
53$lang['Information'] = 'Information';
54$lang['btn_addmodify'] = 'Add/Modify';
55
56// ##################################
57// ######### Action Message #########
58// ##################################
59
60$lang['message_redirected_by_redirect'] = 'The page (%s) doesn\'t exist. You have been redirected automatically to the redirect page.';
61$lang['message_redirected_to_edit_mode'] = 'This page doesn\'t exist. You have been redirected automatically in the edit mode.';
62$lang['message_pagename_exist_one'] = 'The following page(s) exists already in other namespace(s) with the same name part: ';
63$lang['message_redirected_to_startpage'] = 'The page (%s) doesn\'t exist. You have been redirected automatically to the start page of the namespace.';
64$lang['message_redirected_to_bestpagename'] = 'The page (%s) doesn\'t exist. You have been redirected automatically to the best page.';
65$lang['message_redirected_to_bestnamespace'] = 'The page (%s) doesn\'t exist. You have been redirected automatically to the best namespace.';
66$lang['message_redirected_to_searchengine'] = 'The page (%s) doesn\'t exist. You have been redirected automatically to the search engine.';
67$lang['message_come_from'] = 'This message was fired by the ';
68
69$lang['SqliteMandatory'] = 'The <a href="https://www.dokuwiki.org/plugin:404manager">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-404manager/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-404manager/blob/master/CHANGES.md#v110-09-07-2016">changes file</a> for the list of new functionalities.';
70
71?>
72