lang_stat.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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_stat.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. 'stat_option' => '统计选项',
  14. 'stat_option_posts' => '发帖总数',
  15. 'stat_option_groups' => '群组总数',
  16. 'stat_option_members' => '会员总数',
  17. 'stat_option_groupnewposts' => '群组今日发帖',
  18. 'stat_option_bbsnewposts' => '论坛今日发帖数',
  19. 'stat_option_bbslastposts' => '论坛昨日发帖数',
  20. 'stat_option_onlinemembers' => '当前在线会员数',
  21. 'stat_option_maxmembers' => '历史最高在线会员数',
  22. 'stat_option_doings' => '动态数',
  23. 'stat_option_blogs' => '日志数',
  24. 'stat_option_albums' => '相册数',
  25. 'stat_option_pics' => '图片数',
  26. 'stat_option_shares' => '分享数',
  27. 'stat_edit_showtitle' => '显示名称',
  28. 'stat_edit_showtitle_detail' => '您可以编辑以下对应项来自定义各统计项的显示名称',
  29. 'stat_posts' => '帖子',
  30. 'stat_groups' => '群组',
  31. 'stat_members' => '会员',
  32. 'stat_groupnewposts' => '群组今日发帖',
  33. 'stat_bbsnewposts' => '论坛今日发帖',
  34. 'stat_bbslastposts' => '论坛昨日发帖',
  35. 'stat_onlinemembers' => '当前在线会员',
  36. 'stat_maxmembers' => '历史最高在线',
  37. 'stat_doings' => '动态',
  38. 'stat_blogs' => '日志',
  39. 'stat_albums' => '相册',
  40. 'stat_pics' => '图片',
  41. 'stat_shares' => '分享',
  42. );
  43. ?>