mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
- removed search settings from load page
- no need to retrieve mysql information on every page => removed (fulltext_mysql) - added init() method to search plugins which is called when the search backend is changed - optional create/delete index functions for methods which don't need to loop through all posts (like fulltext_mysql) - index statistic functions for search plugins, displayed on acp search index page - only remove words above 60% (fulltext_phpbb) - added acp method to search plugins so they can display config options specific to a certain search backend - renamed fulltext_phpbb specific options to make clear that they are a part of the plugin - reordered lang entries for the load settings section added acp_search.php: - settings: general options / search backend / backend specific options - index: statistics / delete index / create index (progress popup while processing) git-svn-id: file:///svn/phpbb/trunk@5636 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -149,20 +149,23 @@ $lang = array_merge($lang, array(
|
||||
|
||||
// Load settings
|
||||
$lang = array_merge($lang, array(
|
||||
'SEARCH_SETTINGS' => 'Search Settings',
|
||||
'ACP_LOAD_SETTINGS_EXPLAIN' => 'Here you can enable and disable certain board functions to reduce the amount of processing required. On most servers there is no need to disable any functions. However on certain systems or in shared hosting environments it may be beneficial to disable capabilities you do not really need. You can also specify limits for system load and active sessions beyond which the board will go offline.',
|
||||
'LIMIT_LOAD' => 'Limit system load',
|
||||
'LIMIT_LOAD_EXPLAIN' => 'If the 1 minute system load exceeds this value the board will go offline, 1.0 equals ~100% utilisation of one processor. This only functions on UNIX based servers.',
|
||||
'LIMIT_SESSIONS' => 'Limit sessions',
|
||||
'LIMIT_SESSIONS_EXPLAIN' => 'If the number of sessions exceeds this value within a one minute period the board will go offline. Set to 0 for unlimited sessions.',
|
||||
'LOAD_USER_ACTIVITY' => 'Show users activity',
|
||||
'LOAD_USER_ACTIVITY_EXPLAIN' => 'Displays active topic/forum in user profiles and user control panel. It is recommended to disable this on boards with more than one million posts.',
|
||||
'ONLINE_LENGTH' => 'View online time span',
|
||||
'ONLINE_LENGTH_EXPLAIN' => 'Time in minutes after which inactive users will not appear in viewonline listings, lower equals less processing.',
|
||||
'RECOMPILE_TEMPLATES' => 'Recompile stale templates',
|
||||
'RECOMPILE_TEMPLATES_EXPLAIN' => 'Check for updated template files on filesystem and recompile.',
|
||||
'SESSION_LENGTH' => 'Session length',
|
||||
'SESSION_LENGTH_EXPLAIN' => 'Sessions will expire after this time, in seconds.',
|
||||
'YES_POST_MARKING' => 'Enable dotted topics',
|
||||
'YES_POST_MARKING_EXPLAIN' => 'Indicates whether user has posted to a topic.',
|
||||
'YES_READ_MARKING' => 'Enable server-side topic marking',
|
||||
'YES_READ_MARKING_EXPLAIN' => 'Stores read/unread status information in the database rather than a cookie.',
|
||||
'ONLINE_LENGTH' => 'View online time span',
|
||||
'ONLINE_LENGTH_EXPLAIN' => 'Time in minutes after which inactive users will not appear in viewonline listings, lower equals less processing.',
|
||||
'YES_ONLINE' => 'Enable online user listings',
|
||||
'YES_ONLINE_EXPLAIN' => 'Display online user information on index, forum and topic pages.',
|
||||
'YES_ONLINE_GUESTS' => 'Enable online guest listings in viewonline',
|
||||
@@ -172,22 +175,7 @@ $lang = array_merge($lang, array(
|
||||
'YES_BIRTHDAYS' => 'Enable birthday listing',
|
||||
'YES_MODERATORS' => 'Enable display of Moderators',
|
||||
'YES_JUMPBOX' => 'Enable display of Jumpbox',
|
||||
'RECOMPILE_TEMPLATES' => 'Recompile stale templates',
|
||||
'RECOMPILE_TEMPLATES_EXPLAIN'=> 'Check for updated template files on filesystem and recompile.',
|
||||
'YES_SEARCH' => 'Enable search facilities',
|
||||
'YES_SEARCH_EXPLAIN' => 'User and backend search functions including fulltext updates when posting.',
|
||||
'SEARCH_INTERVAL' => 'Search Flood Interval',
|
||||
'SEARCH_INTERVAL_EXPLAIN' => 'Number of seconds users must wait between searches.',
|
||||
'SEARCH_TYPE' => 'Search Backend',
|
||||
'SEARCH_TYPE_EXPLAIN' => 'phpBB allows you to choose the backend that is used for searching text in post contents. By default the search will use phpBB\'s own fulltext search.',
|
||||
'YES_SEARCH_UPDATE' => 'Enable fulltext updating',
|
||||
'YES_SEARCH_UPDATE_EXPLAIN' => 'Updating of fulltext indexes when posting, overriden if search is disabled.',
|
||||
'MIN_SEARCH_CHARS' => 'Min characters indexed by search',
|
||||
'MIN_SEARCH_CHARS_EXPLAIN' => 'Words with at least this many characters will be indexed for searching.',
|
||||
'MAX_SEARCH_CHARS' => 'Max characters indexed by search',
|
||||
'MAX_SEARCH_CHARS_EXPLAIN' => 'Words with no more than this many characters will be indexed for searching.',
|
||||
'LOAD_USER_ACTIVITY' => 'Show users activity',
|
||||
'LOAD_USER_ACTIVITY_EXPLAIN' => 'Displays active topic/forum in user profiles and user control panel. It is recommended to disable this on boards with more than one million posts.',
|
||||
|
||||
));
|
||||
|
||||
// Email settings
|
||||
|
Reference in New Issue
Block a user