lang_grouplist.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
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: lang_grouplist.php 27449 2012-02-01 05:32:35Z zhangguosheng $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
$lang = array
(
'grouplist_gtids' => '群组类别',
'grouplist_gtids_comment' => '选择群组类别',
'grouplist_fids' => '指定群组',
'grouplist_fids_comment' => '输入指定群组的ID,多个ID之间用逗号分隔',
'grouplist_startrow' => '起始数据行数',
'grouplist_startrow_comment' => '如需设定起始的数据行数,请输入具体数值,0 为从第一行开始,以此类推',
'grouplist_titlelength' => '名称长度',
'grouplist_titlelength' => '设置群组名称最大长度',
'grouplist_summarylength' => '介绍长度',
'grouplist_summarylength_comment' => '设置群组介绍最大长度',
'grouplist_orderby' => '群组排序方式',
'grouplist_orderby_comment' => '设置以哪一字段或方式对群组进行排序',
'grouplist_orderby_dateline' => '按创建时间倒序',
'grouplist_orderby_posts' => '按总发帖数倒序',
'grouplist_orderby_todayposts' => '按今日发帖数倒序',
'grouplist_orderby_threads' => '按话题数倒序',
'grouplist_orderby_level' => '按等级倒序',
'grouplist_orderby_membernum' => '按成员数倒序',
'grouplist_orderby_activity' => '按活跃度倒序',
'grouplist_orderby_commoncredits' => '按共同积分倒序',
'grouplist_orderby_displayorder' => '按默认顺序'
);
?>