lang_doinglist.php 985 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * [Discuz!] (C)2001-2099 Comsenz Inc.
  4. * This is NOT a freeware, use is subject to license terms
  5. *
  6. * $Id: lang_doinglist.php 27449 2012-02-01 05:32:35Z zhangguosheng $
  7. */
  8. if(!defined('IN_DISCUZ')) {
  9. exit('Access Denied');
  10. }
  11. $lang = array
  12. (
  13. 'doinglist_uids' => '用户UID',
  14. 'doinglist_uids_comment' => '填入指定用户的ID(uid),多个用户之间用逗号(,)分隔',
  15. 'doinglist_startrow' => '起始数据行数',
  16. 'doinglist_startrow_comment' => '如需设定起始的数据行数,请输入具体数值,0 为从第一行开始,以此类推',
  17. 'doinglist_titlelength' => '记录长度',
  18. 'doinglist_titlelength_comment' => '指定记录的最大长度,设置为0则支持表情图片',
  19. 'doinglist_orderby' => '动态排序方式',
  20. 'doinglist_orderby_comment' => '设置以哪一字段或方式对动态进行排序',
  21. 'doinglist_orderby_dateline' => '按发布时间倒序',
  22. 'doinglist_orderby_replynum' => '按回复数倒序'
  23. );
  24. ?>