1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: lang_forumlist.php 27449 2012-02-01 05:32:35Z zhangguosheng $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- $lang = array
- (
- 'forumlist_fids' => '指定版块',
- 'forumlist_fids_comment' => '填入指定版块的ID(fid),多个版块之间用逗号(,)分隔',
- 'forumlist_fups' => '上级版块',
- 'forumlist_fups_comment' => '设置显示某些分类或版块下属的版块',
- 'forumlist_titlelength' => '名称长度',
- 'forumlist_titlelength_comment' => '设置版块名称显示的最大长度',
- 'forumlist_summarylength' => '介绍长度',
- 'forumlist_summarylength_comment' => '设置版块介绍显示的最大长度',
- 'forumlist_orderby' => '版块排序方式',
- 'forumlist_orderby_comment' => '设置以哪一字段或方式对版块进行排序',
- 'forumlist_orderby_displayorder' => '按显示顺序顺序排序',
- 'forumlist_orderby_threads' => '按主题数倒序排序',
- 'forumlist_orderby_todayposts' => '按今日发帖数倒序排序',
- 'forumlist_orderby_posts' => '按帖子数倒序排序',
- );
- ?>
|