Мод ИНФА О ПЕРЕМЕЩЕНИЯХ ТЕМ в другие подфорумы Prime Topic Move v1.2.2c
Такое впечатление что стандартный поиск не работает. Да все работает...
Не велика проблема - найти перемещенную кем-то и куда-то тему... Вжик - вжик...
<?php
/**
*
* prime_topic_moved [Russian] Pthelovod
*
* @package language
* @version $Id: prime_topic_move.php,v 1.2.0 2008/08/18 02:28:00 primehalo Exp $
* @copyright (c) 2007-2008 Ken F. Innes IV
* @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
//
// Some characters you may want to copy&paste:
// ’ » “ ” …
//
$lang = array_merge($lang, array(
//acp
'PRIME_TOPIC_MOVED_DISPLAY' => 'Отображать причины переноса тем',
'PRIME_TOPIC_MOVED_DISPLAY_EXPLAIN' => 'Назначить места отображения причины переноса тем.',
'PRIME_TOPIC_MOVED_DISPLAY_NEVER' => 'Показывать/не показывать причины перемещения тем',
'PRIME_TOPIC_MOVED_DISPLAY_FIRST' => 'Показывать в самом первом сообщении перенесенной темы',
'PRIME_TOPIC_MOVED_DISPLAY_LAST' => 'Показывать в каждом новом последнем сообщении темы',
'PRIME_TOPIC_MOVED_DISPLAY_MOVED' => 'Показывать в последнем до перемещения сообщении темы',
'PRIME_TOPIC_MOVED_DISPLAY_SHADOW' => 'Показывать рядом названием темы в списке тем',
//mcp
'PRIME_TOPIC_MOVE_ENTER_REASON' => 'Введите причину перемещения темы',
'PRIME_TOPIC_MOVE_ENTER_REASONS' => 'Введите причины перемещения тем',
//viewtopic & viewforum
'PRIME_TOPIC_MOVED_MESSAGE' => '<b style="color: #000080;">ТЕМА</b>',
'PRIME_TOPIC_MOVED_FROM' => '<b style="color: #000080;">ИЗ ФОРУМА</b> /<strong>%s</strong>/',
'PRIME_TOPIC_MOVED_TO' => '<b style="color: #000080;">В ФОРУМ</b> /<strong>%s</strong>/',
'PRIME_TOPIC_MOVED_BY' => '<b style="color: #000080;">МОДЕРАТОРОМ</b> /%s/',
'PRIME_TOPIC_MOVED_ON' => '<b style="color: #000080;">ПЕРЕНЕСЕНА</b> /%s/',
'PRIME_TOPIC_MOVED_NO_USER' => 'К сожалению исходное место этой темы не существует',
'PRIME_TOPIC_MOVED_UNDO' => '<b style="color: #FF0000;">ВЕРНУТЬ ТЕМУ НА МЕСТО?</b>',
));
?>
Вернуться в 450 модов движка форумов phpBB (до версии 3.0.14)