21 lines
481 B
PHP
Executable File
21 lines
481 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
|
* This is NOT a freeware, use is subject to license terms
|
|
*
|
|
* $Id: lang_misc.php 33712 2013-08-06 11:14:00Z nemohou $
|
|
*/
|
|
|
|
if(!defined('IN_DISCUZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
$lang = array
|
|
(
|
|
'bindqq' => '您需要绑定QQ账号后才能开启此应用',
|
|
'bindqq_link' => '<a href="javascript:;" class="lightlink" onclick="BindQQ()"><b>开始绑定QQ</b></a>',
|
|
'back' => '点击这里返回上一页',
|
|
);
|
|
|
|
?>
|