1<?php
2/**
3 * Plugin BatchEdit: English language file
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Mykola Ostrovskyy <dwpforge@gmail.com>
7 */
8
9// Settings must be present and set appropriately for the language
10$lang['encoding']   = 'utf-8';
11$lang['direction']  = 'ltr';
12
13// For admin plugins, the menu prompt to be displayed in the admin menu
14// if set here, the plugin doesn't need to override the getMenuText() method
15$lang['menu'] = 'BatchEdit';
16
17$lang['err_invreq'] = 'Invalid request.';
18$lang['err_nosearch'] = 'Search expression is not specified.';
19$lang['err_invregexp'] = 'Invalid regular expression.';
20$lang['err_emptyidx'] = 'The page index is empty.';
21$lang['err_idxaccess'] = 'Cannot access the page index.';
22$lang['err_emptyns'] = 'No pages found in namespace "{1}".';
23$lang['err_pregfailed'] = 'Regular expression matching has failed.';
24
25$lang['war_nomatches'] = 'No matches are found.';
26$lang['war_norights'] = 'You have no rights to edit page {1}.';
27$lang['war_pagelock'] = 'Page {1} is locked by {2}.';
28$lang['war_matchfail'] = 'Failed to apply match {1}.';
29$lang['war_searchlimit'] = 'The search was interrupted after reaching maximal number of matches.';
30$lang['war_timeout'] = 'The operation was interrupted because it is taking too much time.';
31$lang['war_cancelled'] = 'The operation was interrupted on user\'s request.';
32$lang['war_nosummary'] = 'The edit summary was not provided. Do you want to proceed witout it?';
33
34$lang['msg_error'] = '<b>Error:</b> {1}';
35$lang['msg_warning'] = '<b>Warning:</b> {1}';
36
37$lang['btn_preview'] = 'Preview';
38$lang['btn_apply'] = 'Apply';
39$lang['btn_cancel'] = 'Cancel';
40
41$lang['hnt_textsearch'] = 'AnyWiki';
42$lang['hnt_textreplace'] = 'DokuWiki';
43$lang['hnt_regexpsearch'] = '\w+(Wiki)';
44$lang['hnt_regexpreplace'] = 'Doku$1';
45$lang['hnt_advregexpsearch'] = '/\w+(Wiki)/m';
46
47$lang['lbl_ns'] = 'Namespace';
48$lang['lbl_search'] = 'Search for';
49$lang['lbl_replace'] = 'Replace with';
50$lang['lbl_summary'] = 'Edit summary';
51$lang['lbl_minor'] = 'Minor changes';
52$lang['lbl_searchmode'] = 'Search mode';
53$lang['lbl_searchtext'] = 'Plain text';
54$lang['lbl_searchregexp'] = 'Regular expression';
55$lang['lbl_matchcase'] = 'Case sensitive';
56$lang['lbl_multiline'] = 'Multiline';
57$lang['lbl_advregexp'] = 'Use delimiters and modifiers in regular expression';
58$lang['lbl_matchctx'] = 'Show match context of {1} characters or {2} lines';
59$lang['lbl_searchlimit'] = 'Stop search after finding first {1} matches';
60$lang['lbl_keepmarks'] = 'Preserve marked matches on preview {1}';
61$lang['lbl_keepmarks1'] = 'Safe mode';
62$lang['lbl_keepmarks2'] = 'Same match';
63$lang['lbl_keepmarks3'] = 'Same offset';
64$lang['lbl_keepmarks4'] = 'I feel lucky!';
65$lang['lbl_tplpatterns'] = 'Apply namespace template replacement patterns';
66$lang['lbl_checksummary'] = 'Show confirmation on applying edits with no summary';
67$lang['lbl_searching'] = 'Searching...';
68$lang['lbl_applying'] = 'Applying...';
69
70$lang['sts_preview'] = 'Search results: {1} on {2}';
71$lang['sts_apply'] = 'Edit results: {1} on {2}, {3}';
72$lang['sts_page'] = '{1} &ndash; {2}';
73$lang['sts_matches#one'] = '{1} match';
74$lang['sts_matches#many'] = '{1} matches';
75$lang['sts_pages#one'] = '{1} page';
76$lang['sts_pages#many'] = '{1} pages';
77$lang['sts_edits#one'] = '{1} replacement applied';
78$lang['sts_edits#many'] = '{1} replacements applied';
79
80$lang['ttl_applyall'] = 'Apply all matches';
81$lang['ttl_applyfile'] = 'Apply all matches in this file';
82$lang['ttl_applymatch'] = 'Apply this match';
83$lang['ttl_view'] = 'Go to this page';
84$lang['ttl_edit'] = 'Edit this page';
85$lang['ttl_mainform'] = 'Go to bottom';
86$lang['ttl_extoptions'] = 'Advanced options';
87
88$lang['dim_options'] = '13em';
89$lang['dim_extoptions'] = '28em';
90