diff options
author | Dhruv Goel <dhruv.goel92@gmail.com> | 2012-06-12 04:31:31 +0530 |
---|---|---|
committer | Dhruv Goel <dhruv.goel92@gmail.com> | 2012-07-05 21:17:14 +0530 |
commit | 2821dc332537ec962ad1552d523ffaa7f50d7a43 (patch) | |
tree | 49ffcb4fff0cf3ad508f673617a4e0551f181ef9 /phpBB/language/en | |
parent | 84054afc9de614bb41f178f78a71c6966b9e0537 (diff) | |
download | forums-2821dc332537ec962ad1552d523ffaa7f50d7a43.tar forums-2821dc332537ec962ad1552d523ffaa7f50d7a43.tar.gz forums-2821dc332537ec962ad1552d523ffaa7f50d7a43.tar.bz2 forums-2821dc332537ec962ad1552d523ffaa7f50d7a43.tar.xz forums-2821dc332537ec962ad1552d523ffaa7f50d7a43.zip |
[feature/postgresql-fulltext-search] fix language tsearch2 to text search
Language is changed according to the current PostgreSQL documentation.
PHPBB3-9730
Diffstat (limited to 'phpBB/language/en')
-rw-r--r-- | phpBB/language/en/acp/search.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/language/en/acp/search.php b/phpBB/language/en/acp/search.php index 6d45878038..736a3049a8 100644 --- a/phpBB/language/en/acp/search.php +++ b/phpBB/language/en/acp/search.php @@ -65,11 +65,11 @@ $lang = array_merge($lang, array( 'FULLTEXT_POSTGRES_TS_NOT_USABLE' => 'The PostgreSQL fulltext backend can only be used with PostgreSQL 8.3 and above.', 'FULLTEXT_POSTGRES_TOTAL_POSTS' => 'Total number of indexed posts', 'FULLTEXT_POSTGRES_PCRE' => 'Support for non-latin UTF-8 characters using PCRE:', - 'FULLTEXT_POSTGRES_TS_NAME' => 'Tsearch2 Configuration Profile:', + 'FULLTEXT_POSTGRES_TS_NAME' => 'Text search Configuration Profile:', 'FULLTEXT_POSTGRES_MIN_WORD_LEN' => 'Minimum word length for keywords', 'FULLTEXT_POSTGRES_MAX_WORD_LEN' => 'Maximum word length for keywords', '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_TS_NAME_EXPLAIN' => 'The Text search 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.', |