mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 05:50:42 +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:
@@ -47,6 +47,7 @@ $lang = array_merge($lang, array(
|
||||
'ACCOUNT_ALREADY_ACTIVATED' => 'Your account is already activated',
|
||||
'ACCOUNT_NOT_ACTIVATED' => 'Your account has not been activated yet',
|
||||
'ACP' => 'Administration Control Panel',
|
||||
'ACTIVE' => 'active',
|
||||
'ACTIVE_ERROR' => 'You have specified an inactive username. Please activate your account and try again. If you continue to have problems please contact a board administrator.',
|
||||
'ADMINISTRATOR' => 'Administrator',
|
||||
'ADMINISTRATORS' => 'Administrators',
|
||||
@@ -90,6 +91,7 @@ $lang = array_merge($lang, array(
|
||||
'CANCEL' => 'Cancel',
|
||||
'CHANGE' => 'Change',
|
||||
'CLICK_VIEW_PRIVMSG' => 'Click %sHere%s to visit your Inbox',
|
||||
'CLOSE_WINDOW' => 'Close window',
|
||||
'CONFIRM' => 'Confirm',
|
||||
'CONFIRM_CODE' => 'Confirmation code',
|
||||
'CONFIRM_CODE_EXPLAIN' => 'Enter the code exactly as you see it in the image, it is case sensitive, zero has a diagonal line through it.',
|
||||
@@ -290,6 +292,7 @@ $lang = array_merge($lang, array(
|
||||
'NO_NEW_PM' => '<b>0</b> new messages',
|
||||
'NO_NEW_POSTS' => 'No new posts',
|
||||
'NO_POSTS' => 'No Posts',
|
||||
'NO_SUCH_SEARCH_MODULE' => 'The specified search backend doesn\'t exist',
|
||||
'NO_TOPIC' => 'The requested topic does not exist.',
|
||||
'NO_TOPICS' => 'There are no topics or posts in this forum.',
|
||||
'NO_UNREAD_PM' => '<b>0</b> unread messages',
|
||||
|
Reference in New Issue
Block a user