lang_stat.php
1.37 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
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: lang_stat.php 27449 2012-02-01 05:32:35Z zhangguosheng $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
$lang = array
(
'stat_option' => '统计选项',
'stat_option_posts' => '发帖总数',
'stat_option_groups' => '群组总数',
'stat_option_members' => '会员总数',
'stat_option_groupnewposts' => '群组今日发帖',
'stat_option_bbsnewposts' => '论坛今日发帖数',
'stat_option_bbslastposts' => '论坛昨日发帖数',
'stat_option_onlinemembers' => '当前在线会员数',
'stat_option_maxmembers' => '历史最高在线会员数',
'stat_option_doings' => '动态数',
'stat_option_blogs' => '日志数',
'stat_option_albums' => '相册数',
'stat_option_pics' => '图片数',
'stat_option_shares' => '分享数',
'stat_edit_showtitle' => '显示名称',
'stat_edit_showtitle_detail' => '您可以编辑以下对应项来自定义各统计项的显示名称',
'stat_posts' => '帖子',
'stat_groups' => '群组',
'stat_members' => '会员',
'stat_groupnewposts' => '群组今日发帖',
'stat_bbsnewposts' => '论坛今日发帖',
'stat_bbslastposts' => '论坛昨日发帖',
'stat_onlinemembers' => '当前在线会员',
'stat_maxmembers' => '历史最高在线',
'stat_doings' => '动态',
'stat_blogs' => '日志',
'stat_albums' => '相册',
'stat_pics' => '图片',
'stat_shares' => '分享',
);
?>