26 lines
849 B
PHP
26 lines
849 B
PHP
<?php
|
|
|
|
/**
|
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
|
* This is NOT a freeware, use is subject to license terms
|
|
*
|
|
* $Id: lang_friend.php 27449 2012-02-01 05:32:35Z zhangguosheng $
|
|
*/
|
|
|
|
if(!defined('IN_DISCUZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
$lang = array
|
|
(
|
|
'friend_name' => '添加好友任务',
|
|
'friend_desc' => '拥有 5 个好友获得相应的奖励',
|
|
'friend_view' => '<strong>请按照以下的说明来参与本任务:</strong>
|
|
<ul>
|
|
<li>1. <a href="home.php?mod=spacecp&ac=friend&op=find" target="_blank">新窗口打开寻找好友页面</a></li>
|
|
<li>2. 在新打开的页面中,可以将系统自动给您找到的推荐用户加为好友,也可以自己设置条件寻找并添加为好友</li>
|
|
<li>3. 接下来,您还需要等待对方批准您的好友申请</li>
|
|
</ul>',
|
|
);
|
|
|
|
?>
|