39 lines
1.5 KiB
PHP
39 lines
1.5 KiB
PHP
<?php
|
||
|
||
/**
|
||
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
||
* This is NOT a freeware, use is subject to license terms
|
||
*
|
||
* $Id: lang_piclist.php 27449 2012-02-01 05:32:35Z zhangguosheng $
|
||
*/
|
||
|
||
if(!defined('IN_DISCUZ')) {
|
||
exit('Access Denied');
|
||
}
|
||
|
||
$lang = array
|
||
(
|
||
'piclist_picids' => '指定图片',
|
||
'piclist_picids_comment' => '填入指定图片的ID(picid),多个图片之间用逗号(,)分隔',
|
||
'piclist_aids' => '相册ID',
|
||
'piclist_aids_comment' => '填入指定相册的ID(aid),多个相册之间用逗号(,)分隔',
|
||
'piclist_uids' => '用户UID',
|
||
'piclist_uids_comment' => '填入指定用户的ID(uid),多个用户之间用逗号(,)分隔',
|
||
'piclist_startrow' => '起始数据行数',
|
||
'piclist_startrow_comment' => '如需设定起始的数据行数,请输入具体数值,0 为从第一行开始,以此类推',
|
||
'piclist_hours' => '时间范围',
|
||
'piclist_hours_nolimit' => '不限制',
|
||
'piclist_hours_hour' => '1小时内',
|
||
'piclist_hours_day' => '24小时内',
|
||
'piclist_hours_week' => '7天内',
|
||
'piclist_hours_month' => '1月内',
|
||
'piclist_hours_year' => '1年内',
|
||
'piclist_titlelength' => '标题长度',
|
||
'piclist_titlelength' => '指定图片标题最大长度',
|
||
'piclist_orderby' => '图片排序方式',
|
||
'piclist_orderby_comment' => '设置以哪一字段或方式对图片进行排序',
|
||
'piclist_orderby_dateline' => '按发布时间倒序',
|
||
'piclist_orderby_hot' => '按热度倒序'
|
||
);
|
||
|
||
?>
|