1<?php
2
3/*****************************************************************
4* SearchPattern Langage file (en)
5* Author : Matthieu Rioteau (matthieu<dot>rioteau<at>skf<dot>com)
6* Creation : 2009-12-16
7* Releases list :
8* - ver 0.1 : 2009-12-22 : Initial release
9* - ver 0.2 : 2010-07-05 : Restriction/exclusion capability
10* - ver 2013-06-16       : Add new option 'dispheadl' (leo)
11*****************************************************************/
12
13$lang['admin_menu_text'] = 'SearchPattern settings';
14
15$lang['main_admin_title'] = 'SearchPattern plugin behavior settings';
16$lang['ndqerr_admin_title'] = 'In case of non-doubled single quote :';
17$lang['regerr_admin_title'] = 'In case of regex syntax error :';
18$lang['badopt_admin_title'] = 'In case a bad option is used :';
19$lang['ignopt_admin_title'] = 'In case an option shall be ignored :';
20$lang['option_admin_title'] = 'In case options are used :';
21$lang['dispheadl_admin_title'] = 'Show regex code in result table :';
22
23$lang['nocatch'] = 'Do not catch the request (original text is displayed)';
24$lang['error'] = 'Catch the request and display an error message';
25$lang['warning'] = 'Catch the request, display a warning message and proceed';
26$lang['nowarn'] = 'Catch the request and proceed (ignore fault)';
27$lang['disp'] = 'Display in the result table';
28$lang['nodisp'] = 'Don\'t display in the result table';
29
30$lang['save_conf_ok'] = 'Configuration saved';
31$lang['save_conf_warn'] = 'Configuration saved but default values set for some parameters';
32$lang['save_conf_nowr'] = 'Configuration not saved : not able to write conf file';
33$lang['save_conf_noop'] = 'Configuration not saved : not able to open conf file';
34$lang['save_conf_ok_lvl'] = '1';	//message level : success
35$lang['save_conf_warn_lvl'] = '2';	//message level : warning
36$lang['save_conf_nowr_lvl'] = '-1';	//message level : error
37$lang['save_conf_noop_lvl'] = '-1';	//message level : error
38
39$lang['src_res'] = 'Search result for pattern';
40$lang['csnormal'] = 'Case sensitive normal search';
41$lang['not_csnormal'] = 'Not case-sensitive normal search';
42$lang['regex'] = 'Regular expression search';
43$lang['page_name'] = 'Page name';
44$lang['num_match'] = 'Match(es)';
45$lang['ndq_err_warn'] = 'At least one non-doubled single quote has been found.<br />Search processed anyway but unexpected results can appear.';
46$lang['no_res'] = 'No result has been found';
47$lang['pat_err'] = 'Following error(s) was(were) found processing the pattern';
48$lang['ndq_err'] = 'At least one non-doubled single quote has been found';
49$lang['reg_err'] = 'Regex syntax was not correct';
50$lang['unkw_err'] = 'An unexpected error has occured, please go to plugin web page for more help';
51$lang['badopt_warn'] = 'Following unknown options have been used (process will continue anyway) :';
52$lang['ignopt_warn'] = 'Following options have been ignored because overwritten by others :';
53$lang['badopt_err'] = 'Following unknown options are used :';
54$lang['restriction'] = 'Search has been restricted to following pages/namespaces :';
55$lang['exclusion'] = 'Following pages/namespaces have been excluded from search :';
56
57$lang['call_handler_invalid'] = 'Plugin name is invalid';
58$lang['call_handler_notsupported'] = 'Plugin not found or plugin doesn\'t have searchpattern handler method (doesn\'t support searchpattern)';
59$lang['call_handler_disabled'] = 'Plugin not found or plugin doesn\'t have searchpattern handler method (doesn\'t support searchpattern)';
60
61$lang['dispheadl'] = 'Display headline with regex code in result table';
62
63?>
64