1<?php
2/**
3 * english language file
4 */
5
6// settings must be present and set appropriately for the language
7$lang['encoding']   = 'utf-8';
8$lang['direction']  = 'ltr';
9
10// for admin plugins, the menu prompt to be displayed in the admin menu
11// if set here, the plugin doesn't need to override the getMenuText() method
12$lang['menu'] = 'multiORPHANS';
13
14$lang['startingNamespace'] = 'Enter your starting Namespace';
15
16$lang['startProcess'] = 'Start Process';
17$lang['start'] = 'Start';
18$lang['status'] = 'Status';
19$lang['ns'] = 'Set Namespace';
20$lang['idFilter'] = 'RegEx to filter full ID';
21$lang['purge'] = 'Purge cache for checked ID';
22
23$lang['depth'] = 'Depth';
24$lang['depthType'] = 'Export Type';
25$lang['depth.pageOnly'] = 'this page only';
26$lang['depth.allSubNameSpaces'] = 'all sub namespaces';
27$lang['depth.specifiedDepth'] = 'specified depth';
28
29$lang['type'] = 'What to check';
30$lang['type.pages'] = 'Pages only';
31$lang['type.media'] = 'Media only';
32$lang['type.both'] = 'Pages and Media';
33
34$lang['pages-result'] = 'Result of PAGES check';
35$lang['media-result'] = 'Result of MEDIA check';
36$lang['wanted'] = 'Wanted';
37$lang['orphan'] = 'Orphaned';
38$lang['linked'] = 'Linked';
39$lang['checkExternal'] = 'Check external URLs';
40$lang['includeHidden'] = 'Include hidden pages';
41$lang['includeWindowsShares']  = 'Include Windows Share Links';
42$lang['checkExternalHint'] = 'Implies a performance hit due to checking external pages for HTTP status "200 OK".';
43$lang['includeWindowsSharesHint'] = 'By default links to Windows Shares are not considered. False-positives might occur while checking these links in consequence of misconfigured <a href="https://secure.php.net/manual/de/function.file-exists.php#76194" target="_blank">share- or NTFS-permissions</a>!';
44
45
46
47$lang['js']['request-aborted'] = 'Request aborted';
48$lang['js']['start'] = 'Start';
49$lang['js']['stop'] = 'Stop';
50
51$lang['js']['checking-done'] = 'Done checking the pages';
52$lang['js']['checking-page'] = 'Checking page';
53$lang['js']['checking-orphans'] = 'Checking for orphans.';
54
55$lang['js']['error-parsing'] = 'Error parsing answer:';
56$lang['js']['please-wait-orphan'] = 'Please wait for the process to finish.';
57
58$lang['throttle'] = 'Throttle request in seconds';
59$lang['js']['throttled']        = 'throttled';
60
61//Setup VIM: ex: et ts=4 enc=utf-8 :
62