lang_polllist.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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_polllist.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. 'polllist_name' => '投票列表',
  14. 'polllist_desc' => '投票列表调用',
  15. 'polllist_uids' => '用户UID',
  16. 'polllist_uids_comment' => '填入指定用户的ID(uid),多个用户之间用逗号(,)分隔',
  17. 'polllist_startrow' => '起始数据行数',
  18. 'polllist_startrow_comment' => '如需设定起始的数据行数,请输入具体数值,0 为从第一行开始,以此类推',
  19. 'polllist_titlelength' => '标题长度',
  20. 'polllist_summarylength' => '简介长度',
  21. 'polllist_orderby' => '投票排序方式',
  22. 'polllist_orderby_comment' => '设置以哪一字段或方式对投票进行排序',
  23. 'polllist_orderby_dateline' => '按发布时间倒序',
  24. 'polllist_orderby_hot' => '按热度倒序',
  25. 'polllist_orderby_lastvote' => '按最后投票时间倒序',
  26. 'polllist_orderby_viewnum' => '按查看数倒序',
  27. 'polllist_orderby_replynum' => '按回复数倒序',
  28. 'polllist_orderby_votenum' => '按投票数倒序',
  29. 'polllist_credit' => '悬赏投票',
  30. 'polllist_credit_nolimit' => '不限定',
  31. 'polllist_credit_yes' => '只取悬赏投票',
  32. 'polllist_expirefilter' => '过期投票',
  33. 'polllist_expirefilter_off' => '不屏蔽',
  34. 'polllist_expirefilter_on' => '屏蔽',
  35. );
  36. ?>