33 lines
1.3 KiB
PHP
33 lines
1.3 KiB
PHP
<?php
|
||
|
||
/**
|
||
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
||
* This is NOT a freeware, use is subject to license terms
|
||
*
|
||
* $Id: lang_albumlist.php 27449 2012-02-01 05:32:35Z zhangguosheng $
|
||
*/
|
||
|
||
if(!defined('IN_DISCUZ')) {
|
||
exit('Access Denied');
|
||
}
|
||
|
||
$lang = array
|
||
(
|
||
'albumlist_aids' => '指定相册',
|
||
'albumlist_aids_comment' => '填入指定相册的ID(aid),多个相册之间用逗号(,)分隔',
|
||
'albumlist_uids' => '用户UID',
|
||
'albumlist_uids_comment' => '填入指定用户的ID(uid),多个用户之间用逗号(,)分隔',
|
||
'albumlist_catid' => '指定分类',
|
||
'albumlist_catid_comment' => '选择相册所属的系统相册分类,可多选',
|
||
'albumlist_startrow' => '起始数据行数',
|
||
'albumlist_startrow_comment' => '如需设定起始的数据行数,请输入具体数值,0 为从第一行开始,以此类推',
|
||
'albumlist_titlelength' => '标题长度',
|
||
'albumlist_titlelength' => '指定相册名称最大长度',
|
||
'albumlist_orderby' => '图片排序方式',
|
||
'albumlist_orderby_comment' => '设置以哪一字段或方式对图片进行排序',
|
||
'albumlist_orderby_dateline' => '按发布时间倒序',
|
||
'albumlist_orderby_picnum' => '按照片数倒序',
|
||
'albumlist_orderby_updatetime' => '按更新时间倒序'
|
||
);
|
||
|
||
?>
|