lang_post.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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_post.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. 'post_name' => '论坛帖子类任务',
  14. 'post_desc' => '通过发帖回帖完成任务,活跃论坛的氛围',
  15. 'post_complete_var_act' => '动作',
  16. 'post_complete_var_act_newthread' => '发新主题',
  17. 'post_complete_var_act_newreply' => '发新回复',
  18. 'post_complete_var_act_newpost' => '发新主题/回复',
  19. 'post_complate_var_forumid' => '版块限制',
  20. 'post_complate_var_forumid_comment' => '设置会员只能在某个版块完成任务',
  21. 'post_complate_var_threadid' => '回复指定主题',
  22. 'post_complate_var_threadid_comment' => '设置会员只有回复该主题才能完成任务,请填写主题的 TID',
  23. 'post_complate_var_author' => '回复指定作者',
  24. 'post_complate_var_author_comment' => '设置会员只有回复该作者发表的主题才能完成任务,请填写作者的用户名',
  25. 'post_complete_var_num' => '执行动作次数下限',
  26. 'post_complete_var_num_comment' => '会员需要执行相应动作的最少次数',
  27. 'post_complete_var_time' => '时间限制(小时)',
  28. 'post_complete_var_time_comment' => '设置会员从申请任务到完成任务的时间限制,会员在此时间内未能完成任务则不能领取奖励并标记任务失败,0 或留空为不限制',
  29. 'task_complete_forumid' => '在版块 {value} ',
  30. 'task_complete_act_newthread' => '发新主题 {num} 次',
  31. 'task_complete_act_newpost' => '发新主题/回复 {num} 次',
  32. 'task_complete_act_newreply_thread' => '在“{value}”回复主题 {num} 次',
  33. 'task_complete_act_newreply_author' => '回复作者“{value}”的主题 {num} 次',
  34. );
  35. ?>