Файл: forsoc.ru/ext/vse/similartopics/language/en/acp_similar_topics.php
Строк: 145
<?php
/**
*
* Precise Similar Topics [English]
*
* @copyright (c) 2013 Matt Friedman
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/
/**
* 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(
'PST_TITLE_ACP' => 'Precise Similar Topics',
'PST_EXPLAIN' => 'Precise Similar Topics displays a list of similar (related) topics at the bottom of the current topic’s page.',
'PST_LEGEND1' => 'General settings',
'PST_ENABLE' => 'Display Similar Topics',
'PST_LEGEND2' => 'Load settings',
'PST_LIMIT' => 'Number of Similar Topics to display',
'PST_LIMIT_EXPLAIN' => 'Here you can define how many similar topics to display. The default is 5 topics.',
'PST_TIME' => 'Search period',
'PST_TIME_EXPLAIN' => 'This option allows you to configure the Similar Topics search period. For example, if set to “5 days” the system will only show similar topics from within the last 5 days. The default is 1 year.',
'PST_YEARS' => 'Years',
'PST_MONTHS' => 'Months',
'PST_WEEKS' => 'Weeks',
'PST_DAYS' => 'Days',
'PST_CACHE' => 'Similar Topics cache length',
'PST_CACHE_EXPLAIN' => 'Cached similar topics will expire after this time, in seconds. Set to 0 if you want to disable the similar topics cache.',
'PST_LEGEND3' => 'Forum settings',
'PST_NOSHOW_LIST' => 'Do Not Display In',
'PST_NOSHOW_TITLE' => 'Do not display similar topics in',
'PST_IGNORE_SEARCH' => 'Do Not Search In',
'PST_IGNORE_TITLE' => 'Do not search for similar topics in',
'PST_STANDARD' => 'Standard',
'PST_ADVANCED' => 'Advanced',
'PST_ADVANCED_TITLE'=> 'Click to set up advanced similar topic settings for',
'PST_ADVANCED_EXP' => 'Here you can select specific forums to pull similar topics from. Only similar topics found in the forums you select here will be displayed in <strong>%s</strong>.<br /><br />Do not select any forums if you want similar topics from all searchable forums to be displayed in this forum.<br /><br />Select multiple forums by holding <samp>CTRL</samp> (or <samp>⌘CMD</samp> on Mac) and clicking.',
'PST_ADVANCED_FORUM'=> 'Advanced forum settings',
'PST_DESELECT_ALL' => 'Deselect all',
'PST_LEGEND4' => 'Optional settings',
'PST_WORDS' => 'Special words to ignore',
'PST_WORDS_EXPLAIN' => 'Add special words unique to your forum that should be ignored when finding similar topics. (Note: Words that are currently regarded as common in your language are already ignored by default.) Separate each word with a space. Case insensitive. Max. 255 characters.',
'PST_SAVED' => 'Similar Topics settings updated',
'PST_FORUM_INFO' => '“Do Not Display In”: Will not show similar topics in the selected forums.<br />“Do Not Search In” : Will not search for similar topics in the selected forums.',
'PST_NO_MYSQL' => 'Similar Topics is not compatible with your forum. Similar Topics will only run on a MySQL 4 or MySQL 5 database.',
'PST_WARN_FULLTEXT' => 'Similar Topics is not compatible with your forum.<br />Similar Topics uses MySQL fulltext indexes which can only be used with MyISAM or InnoDB tables. MySQL 5.6.4 or later is required for fulltext indexes on InnoDB tables.<br /><br />If you want to use Similar Topics, your database can be updated to support fulltext indexes. Any changes made will be reverted if you ever decide to remove Similar Topics.',
'PST_ADD_FULLTEXT' => 'Yes, enable support for fulltext indexes',
'PST_SAVE_FULLTEXT' => 'Your database has been updated. You can now enjoy using Similar Topics.',
'PST_ERR_FULLTEXT' => 'Your database could not be updated.',
'PST_ERR_CONFIG' => 'Too many forums were marked in the list of forums. Please try again with a smaller selection.',
));