lang_forumstat.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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_forumstat.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. 'forumstat_name' => '论坛统计',
  14. 'forumstat_desc' => '论坛统计数据调用',
  15. 'forumstat_forums_allow' => '显示版块数统计',
  16. 'forumstat_forums_order' => '版块数统计显示顺序',
  17. 'forumstat_forums_text' => '版块数统计提示文字',
  18. 'forumstat_forums_default' => '版块数:',
  19. 'forumstat_threads_allow' => '显示主题数统计',
  20. 'forumstat_threads_order' => '主题数统计显示顺序',
  21. 'forumstat_threads_text' => '主题数统计提示文字',
  22. 'forumstat_threads_default' => '主题数:',
  23. 'forumstat_posts_allow' => '显示帖子数统计',
  24. 'forumstat_posts_order' => '帖子数统计显示顺序',
  25. 'forumstat_posts_text' => '帖子数统计提示文字',
  26. 'forumstat_posts_default' => '帖子数:',
  27. 'forumstat_members_allow' => '显示用户数统计',
  28. 'forumstat_members_order' => '用户数统计显示顺序',
  29. 'forumstat_members_text' => '用户数统计提示文字',
  30. 'forumstat_members_default' => '用户数:',
  31. 'forumstat_online_allow' => '显示在线人数统计',
  32. 'forumstat_online_order' => '在线人数统计显示顺序',
  33. 'forumstat_online_text' => '在线人数统计提示文字',
  34. 'forumstat_online_default' => '在线人数:',
  35. 'forumstat_onlinemember_allow' => '显示在线会员统计',
  36. 'forumstat_onlinemember_order' => '在线会员统计显示顺序',
  37. 'forumstat_onlinemember_text' => '在线会员统计提示文字',
  38. 'forumstat_onlinemember_default' => '在线会员:',
  39. );
  40. ?>