diff options
| author | David M <davidmj@users.sourceforge.net> | 2007-03-31 14:36:01 +0000 |
|---|---|---|
| committer | David M <davidmj@users.sourceforge.net> | 2007-03-31 14:36:01 +0000 |
| commit | 9b50de6b89d3ef7f4c7fdacb8b45e8b75dfe3d54 (patch) | |
| tree | 4762dc255abeef7a8630c2295cce364d8abc71a4 /phpBB/language/en/acp/search.php | |
| parent | 3abc3dd3310e5c26eb58312c7f6f505f9de63644 (diff) | |
| download | forums-9b50de6b89d3ef7f4c7fdacb8b45e8b75dfe3d54.tar forums-9b50de6b89d3ef7f4c7fdacb8b45e8b75dfe3d54.tar.gz forums-9b50de6b89d3ef7f4c7fdacb8b45e8b75dfe3d54.tar.bz2 forums-9b50de6b89d3ef7f4c7fdacb8b45e8b75dfe3d54.tar.xz forums-9b50de6b89d3ef7f4c7fdacb8b45e8b75dfe3d54.zip | |
the mysql search backend now tries to use mbstring's regex engine if PCRE does not have property support
git-svn-id: file:///svn/phpbb/trunk@7247 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language/en/acp/search.php')
| -rw-r--r-- | phpBB/language/en/acp/search.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/language/en/acp/search.php b/phpBB/language/en/acp/search.php index 8224a6e1bc..5982eec31a 100644 --- a/phpBB/language/en/acp/search.php +++ b/phpBB/language/en/acp/search.php @@ -52,8 +52,10 @@ $lang = array_merge($lang, array( 'FULLTEXT_MYSQL_SUBJECT_CARDINALITY' => 'Cardinality of the post_subject fulltext index (estimate of unique values)', 'FULLTEXT_MYSQL_TEXT_CARDINALITY' => 'Cardinality of the post_text fulltext index (estimate of unique values)', 'FULLTEXT_MYSQL_TOTAL_POSTS' => 'Total number of indexed posts', - 'FULLTEXT_MYSQL_UNICODE' => 'Support for non-latin UTF-8 characters:', - 'FULLTEXT_MYSQL_UNICODE_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_MYSQL_MBSTRING' => 'Support for non-latin UTF-8 characters using mbstring:', + 'FULLTEXT_MYSQL_PCRE' => 'Support for non-latin UTF-8 characters using PCRE:', + 'FULLTEXT_MYSQL_MBSTRING_EXPLAIN' => 'If PCRE does not have unicode character properties, the search backend will try to use mbstring\'s regular expression engine.', + 'FULLTEXT_MYSQL_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.', 'GENERAL_SEARCH_SETTINGS' => 'General search settings', 'GO_TO_SEARCH_INDEX' => 'Go to search index page', |
