Viewing file: prune.php (3.83 KB) -rw-rw-r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /** * * acp_prune [Chinese Simplified] * * @package language * @version $Id: prune.php 8479 2008-03-29 00:22:48Z naderman $ * @copyright (c) 2007 phpbbchina.com * @license http://opensource.org/licenses/gpl-license.php GNU Public License * */
/** * DO NOT CHANGE */ if (!defined('IN_PHPBB')) { exit; }
if (empty($lang) || !is_array($lang)) { $lang = array(); }
// DEVELOPERS PLEASE NOTE // // All language files should use UTF-8 as their encoding and the files must not contain a BOM. // // Placeholders can now contain order information, e.g. instead of // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows // translators to re-order the output of data while ensuring it remains correct // // You do not need this where single placeholders are used, e.g. 'Message %d' is fine // equally where a string contains only two placeholders which are used to wrap text // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
// User pruning $lang = array_merge($lang, array( 'ACP_PRUNE_USERS_EXPLAIN' => '这里您可以将论坛中的会员删除(或者冻结)。 你可以有多种形式搜寻,然后删除。如:发帖数量和最后一次的时间等等... 这些方式可以自由组合, 如:你可以选用2001年1月1日之前发贴量少于10篇的会员来删除。 你也可以选择批量删除,只需要将会员名单放进删除栏目中即可。 此功能须小心使用! 一旦用户被删除后将无法再恢复。',
'DEACTIVATE_DELETE' => '冻结或者删除', 'DEACTIVATE_DELETE_EXPLAIN' => '选择冻结会员或者删除会员,注:此操作无法回复!', 'DELETE_USERS' => '删除', 'DELETE_USER_POSTS' => '被删除会员所发表的帖子也删除', 'DELETE_USER_POSTS_EXPLAIN' => '移动被删除会员发表的帖子。若会员被冻结将不会被移动。',
'JOINED_EXPLAIN' => '输入日期,使用 <kbd>YYYY-MM-DD</kbd> 格式。',
'LAST_ACTIVE_EXPLAIN' => '输入日起,使用<kbd>YYYY-MM-DD</kbd> 格式。',
'PRUNE_USERS_LIST' => '将被裁减的用户', 'PRUNE_USERS_LIST_DELETE' => '使用选中的条件, 如下的用户帐号将被删除.', 'PRUNE_USERS_LIST_DEACTIVATE' => '使用选中的条件, 如下的用户帐号将被冻结.',
'SELECT_USERS_EXPLAIN' => '在这里输入特定会员,他们将会用于上述的设定标准。',
'USER_DEACTIVATE_SUCCESS' => '被选择的会员已经成功冻结', 'USER_DELETE_SUCCESS' => '被选择的会员已经成功删除', 'USER_PRUNE_FAILURE' => '没有适合条件的用户.',
'WRONG_ACTIVE_JOINED_DATE' => '输入的日期错误. 正确的格式是 <kbd>YYYY-MM-DD</kbd>.', ));
// Forum Pruning $lang = array_merge($lang, array( 'ACP_PRUNE_FORUMS_EXPLAIN' => '这将删除所有在规定的时间内没有新回复的主题. 若你不输入数字, 那么所有的文章将会被删除. 默认情况下, 这不会删除投票依然在进行的主题, 置顶的主题和公告.',
'FORUM_PRUNE' => '裁减版面',
'NO_PRUNE' => '没有版面被裁减',
'SELECTED_FORUM' => '已选版面', 'SELECTED_FORUMS' => '已选版面',
'POSTS_PRUNED' => '帖子已裁减', 'PRUNE_ANNOUNCEMENTS' => '裁减公告', 'PRUNE_FINISHED_POLLS' => '裁减已关闭的投票', 'PRUNE_FINISHED_POLLS_EXPLAIN' => '移除已经结束的投票主题', 'PRUNE_FORUM_CONFIRM' => '您确认要以指定的设置裁减选中的版面吗? 一旦开始裁减, 满足条件的帖子和主题将被永远删除.', 'PRUNE_NOT_POSTED' => '从最后发表的天数算起', 'PRUNE_NOT_VIEWED' => '从最后查看的天数算起', 'PRUNE_OLD_POLLS' => '裁减较旧的投票', 'PRUNE_OLD_POLLS_EXPLAIN' => '裁减在规定的时间内没有新投票的主题', 'PRUNE_STICKY' => '裁减置顶主题', 'PRUNE_SUCCESS' => '版面裁减成功',
'TOPICS_PRUNED' => '主题已裁减', ));
?>
|