lang_forumstat.php
1.55 KB
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
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: lang_forumstat.php 27449 2012-02-01 05:32:35Z zhangguosheng $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
$lang = array
(
'forumstat_name' => '论坛统计',
'forumstat_desc' => '论坛统计数据调用',
'forumstat_forums_allow' => '显示版块数统计',
'forumstat_forums_order' => '版块数统计显示顺序',
'forumstat_forums_text' => '版块数统计提示文字',
'forumstat_forums_default' => '版块数:',
'forumstat_threads_allow' => '显示主题数统计',
'forumstat_threads_order' => '主题数统计显示顺序',
'forumstat_threads_text' => '主题数统计提示文字',
'forumstat_threads_default' => '主题数:',
'forumstat_posts_allow' => '显示帖子数统计',
'forumstat_posts_order' => '帖子数统计显示顺序',
'forumstat_posts_text' => '帖子数统计提示文字',
'forumstat_posts_default' => '帖子数:',
'forumstat_members_allow' => '显示用户数统计',
'forumstat_members_order' => '用户数统计显示顺序',
'forumstat_members_text' => '用户数统计提示文字',
'forumstat_members_default' => '用户数:',
'forumstat_online_allow' => '显示在线人数统计',
'forumstat_online_order' => '在线人数统计显示顺序',
'forumstat_online_text' => '在线人数统计提示文字',
'forumstat_online_default' => '在线人数:',
'forumstat_onlinemember_allow' => '显示在线会员统计',
'forumstat_onlinemember_order' => '在线会员统计显示顺序',
'forumstat_onlinemember_text' => '在线会员统计提示文字',
'forumstat_onlinemember_default' => '在线会员:',
);
?>