forked from ForumHulp/pmspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo_acp_pmspy.php
68 lines (60 loc) · 1.89 KB
/
info_acp_pmspy.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/**
*
* @package PM SPy
* @copyright (c) 2016 ForumHulp.com
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
$lang = array_merge($lang, array(
'ACP_PM_SPY' => 'PM Spy',
'AUTHOR_IP' => 'Author IP',
'DATE' => 'Date',
'LAST_ONLINE' => 'Last date online:',
'DELETE_PMS' => 'Delete PM’s',
'NO_PM_SELECTED' => 'No PM’s selected',
'NO_PM_DATA' => 'NO PM’s data',
'PM_BOX' => 'PM box',
'PM_SPY_READ' => 'Private Message Spy',
'PM_SPY_READ_EXPLAIN' => 'Here is a list of all private messages in your board.',
'READ_MESSAGE' => 'Click to read this message',
'TO' => 'To',
'TOTAL_USERS' => 'Total users',
'PM_COUNT' => 'PM count',
'PM_HOLDBOX' => 'Held',
'PM_INBOX' => 'Inbox',
'PM_NOBOX' => 'No box',
'PM_OUTBOX' => 'Outbox',
'PM_SAVED' => 'Saved',
'PM_SENTBOX' => 'Sent',
'SORT_FROM' => 'From',
'SORT_TO' => 'To',
'SORT_BCC' => 'BCC',
'SORT_PM_BOX' => 'PM box',
'LOG_PM_SPY' => '<strong>PM’s deleted by PM Spy</strong><br />',
'FH_HELPER_NOTICE' => 'Forumhulp helper application does not exist!<br />Download <a href="https://github.com/ForumHulp/helper" target="_blank">forumhulp/helper</a> and copy the helper folder to your forumhulp extension folder.',
'PMSPY_NOTICE' => '<div class="phpinfo"><p class="entry">This extension resides in %1$s » %2$s » %3$s.</p></div>',
));
// Description of extension
$lang = array_merge($lang, array(
'DESCRIPTION_PAGE' => 'Description',
'DESCRIPTION_NOTICE' => 'Extension note',
'ext_details' => array(
'details' => array(
'DESCRIPTION_1' => 'Sortable',
'DESCRIPTION_2' => 'Automatic prune of older records',
'DESCRIPTION_3' => 'Grouped in find and not find in post',
),
'note' => array(
'NOTICE_1' => 'phpBB 3.2 ready'
)
)
));