lang_checkonline.php 891 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_checkonline.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. 'checkonline_name' => '雷达卡',
  14. 'checkonline_desc' => '查看某个用户是否在线',
  15. 'checkonline_targetuser' => '您要查看谁是否在线',
  16. 'checkonline_info_nonexistence' => '请输入用户名',
  17. 'checkonline_hidden_message' => '{username} 当前隐身,最后活动时间是 {time}',
  18. 'checkonline_online_message' => '{username} 当前在线,最后活动时间是 {time}',
  19. 'checkonline_offline_message' => '{username} 当前离线',
  20. 'checkonline_info_noperm' => '对不起,您无权查看此人的 IP',
  21. 'checkonline_notification' => '有人使用了{magicname}检查您是否在线',
  22. );
  23. ?>