27 lines
845 B
PHP
27 lines
845 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
||
|
* This is NOT a freeware, use is subject to license terms
|
||
|
*
|
||
|
* $Id: lang_repent.php 27449 2012-02-01 05:32:35Z zhangguosheng $
|
||
|
*/
|
||
|
|
||
|
if(!defined('IN_DISCUZ')) {
|
||
|
exit('Access Denied');
|
||
|
}
|
||
|
|
||
|
$lang = array
|
||
|
(
|
||
|
'repent_name' => '悔悟卡',
|
||
|
'repent_desc' => '可以删除自己的帖子',
|
||
|
'repent_forum' => '允许使用本道具的版块',
|
||
|
'repent_info' => '删除自己的帖子,请输入帖子的 ID',
|
||
|
'repent_info_nonexistence' => '请指定要删除的帖子',
|
||
|
'repent_succeed' => '您操作的帖子已删除',
|
||
|
'repent_info_noperm' => '对不起,主题所在版块不允许使用本道具',
|
||
|
'repent_info_user_noperm' => '对不起,您只能删除自己的帖子',
|
||
|
'repent_do_not_rushreply' => '不能在抢楼帖中使用此道具',
|
||
|
);
|
||
|
|
||
|
?>
|