diff options
| author | Nils Adermann <naderman@naderman.de> | 2006-01-11 18:56:07 +0000 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2006-01-11 18:56:07 +0000 |
| commit | 0e0b1120fba8ed4f2ebc5d62eb29b1a34c1b1007 (patch) | |
| tree | 5cd57f820281c20c6936433d92483cc4712a7ab7 /phpBB/language/en/search.php | |
| parent | 9ea5fa1768feebfb04f2303788eb4c685161e3dd (diff) | |
| download | forums-0e0b1120fba8ed4f2ebc5d62eb29b1a34c1b1007.tar forums-0e0b1120fba8ed4f2ebc5d62eb29b1a34c1b1007.tar.gz forums-0e0b1120fba8ed4f2ebc5d62eb29b1a34c1b1007.tar.bz2 forums-0e0b1120fba8ed4f2ebc5d62eb29b1a34c1b1007.tar.xz forums-0e0b1120fba8ed4f2ebc5d62eb29b1a34c1b1007.zip | |
- overhauled search system
- updated structure for search backend plugins
- better result caching using ACM
- search results no longer session restricted => link to them by copying the URL :)
- in-topic search
- indexing posts now uses search backend plugins
- develop/search_fill.php working again
- fulltext_mysql not working yet
- tiny bugfixes to ACM
git-svn-id: file:///svn/phpbb/trunk@5441 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language/en/search.php')
| -rw-r--r-- | phpBB/language/en/search.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/language/en/search.php b/phpBB/language/en/search.php index 58d08849ee..1f4b6c2ff0 100644 --- a/phpBB/language/en/search.php +++ b/phpBB/language/en/search.php @@ -36,6 +36,7 @@ $lang = array_merge($lang, array( 'FOUND_SEARCH_MATCH' => 'Search found %d match', 'FOUND_SEARCH_MATCHES' => 'Search found %d matches', + 'FOUND_MORE_SEARCH_MATCHES' => 'Search found more than %d matches', 'IGNORED_TERMS' => 'ignored', @@ -43,6 +44,8 @@ $lang = array_merge($lang, array( 'NO_SEARCH' => 'Sorry but you are not permitted to use the search system.', 'NO_SEARCH_RESULTS' => 'No suitable matches were found.', 'NO_SEARCH_TIME' => 'Sorry but you cannot use search at this time. Please try again in a few minutes.', + 'NO_KEYWORDS' => 'You must specify at least one word to search for. Each word must consist of at least %d characters and must not contain more than %d characters excluding wildcards.', + 'TOO_FEW_AUTHOR_CHARS' => 'You must specify at least %d characters of the authors name.', 'POST_CHARACTERS' => 'characters of posts', @@ -52,6 +55,7 @@ $lang = array_merge($lang, array( 'RETURN_FIRST' => 'Return first', 'SEARCHED_FOR' => 'Search term used', + 'SEARCHED_TOPIC' => 'Searched topic', 'SEARCH_ALL_TERMS' => 'Search for all terms or use query as entered', 'SEARCH_ANY_TERMS' => 'Search for any terms', 'SEARCH_AUTHOR' => 'Search for Author', |
