aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language/en/acp/search.php
diff options
context:
space:
mode:
authorwagnerch <wagnerch@code.phpbb.com>2007-07-22 22:23:00 +0000
committerDhruv Goel <dhruv.goel92@gmail.com>2012-06-08 21:28:23 +0530
commit0191e1313ca8179bb09a2fc6f3d06de95768bc96 (patch)
treedc6a76ffadc9fd32bd469eac54c1549a997480a2 /phpBB/language/en/acp/search.php
parent1d0607cbb31865b5128a1a2b92b415386aee0788 (diff)
downloadforums-0191e1313ca8179bb09a2fc6f3d06de95768bc96.tar
forums-0191e1313ca8179bb09a2fc6f3d06de95768bc96.tar.gz
forums-0191e1313ca8179bb09a2fc6f3d06de95768bc96.tar.bz2
forums-0191e1313ca8179bb09a2fc6f3d06de95768bc96.tar.xz
forums-0191e1313ca8179bb09a2fc6f3d06de95768bc96.zip
[feature/postgresql-fulltext-search] PostgreSQL fulltext search, version 1.
PHPBB3-9730
Diffstat (limited to 'phpBB/language/en/acp/search.php')
-rw-r--r--phpBB/language/en/acp/search.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/phpBB/language/en/acp/search.php b/phpBB/language/en/acp/search.php
index 3dc89570bf..5fa5acbe40 100644
--- a/phpBB/language/en/acp/search.php
+++ b/phpBB/language/en/acp/search.php
@@ -61,6 +61,20 @@ $lang = array_merge($lang, array(
'FULLTEXT_MYSQL_MIN_SEARCH_CHARS_EXPLAIN' => 'Words with at least this many characters will be indexed for searching. You or your host can only change this setting by changing the mysql configuration.',
'FULLTEXT_MYSQL_MAX_SEARCH_CHARS_EXPLAIN' => 'Words with no more than this many characters will be indexed for searching. You or your host can only change this setting by changing the mysql configuration.',
+ 'FULLTEXT_POSTGRES_INCOMPATIBLE_VERSION' => 'The PostgreSQL fulltext backend can only be used with PostgreSQL.',
+ 'FULLTEXT_POSTGRES_TS_NOT_FOUND' => 'The PostgreSQL fulltext backend can only be used with Tsearch2.',
+ 'FULLTEXT_POSTGRES_TOTAL_POSTS' => 'Total number of indexed posts',
+ 'FULLTEXT_POSTGRES_MBSTRING' => 'Support for non-latin UTF-8 characters using mbstring:',
+ 'FULLTEXT_POSTGRES_PCRE' => 'Support for non-latin UTF-8 characters using PCRE:',
+ 'FULLTEXT_POSTGRES_TS_NAME' => 'Tsearch2 Configuration Profile:',
+ 'FULLTEXT_POSTGRES_MIN_WORD_LEN' => 'Minimum word length for keywords',
+ 'FULLTEXT_POSTGRES_MAX_WORD_LEN' => 'Maximum word length for keywords',
+ 'FULLTEXT_POSTGRES_MBSTRING_EXPLAIN' => 'If PCRE does not have unicode character properties, the search backend will try to use mbstring’s regular expression engine.',
+ 'FULLTEXT_POSTGRES_PCRE_EXPLAIN' => 'This search backend requires PCRE unicode character properties, only available in PHP 4.4, 5.1 and above, if you want to search for non-latin characters.',
+ 'FULLTEXT_POSTGRES_TS_NAME_EXPLAIN' => 'The Tsearch2 configuration profile used to determine the parser and dictionary.',
+ 'FULLTEXT_POSTGRES_MIN_WORD_LEN_EXPLAIN' => 'Words with at least this many characters will be included in the query to the database.',
+ 'FULLTEXT_POSTGRES_MAX_WORD_LEN_EXPLAIN' => 'Words with no more than this many characters will be included in the query to the database.',
+
'GENERAL_SEARCH_SETTINGS' => 'General search settings',
'GO_TO_SEARCH_INDEX' => 'Go to search index page',