1234567891011121314151617181920212223242526 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: lang_showip.php 27449 2012-02-01 05:32:35Z zhangguosheng $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- $lang = array
- (
- 'showip_name' => '窥视卡',
- 'showip_desc' => '可以查看指定用户的 IP',
- 'showip_targetuser' => '您要查看谁的 IP',
- 'showip_info_nonexistence' => '请输入用户名',
- 'showip_ip_message' => '{username} 的 IP 为 {ip}',
- 'showip_info_noperm' => '对不起,您无权查看此人的 IP',
- 'showip_notification' => '您被人使用了{magicname}',
- );
- ?>
|