|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* search [English]
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @package language
|
|
|
4c79b5 |
* @version $Id: search.php 8479 2008-03-29 00:22:48Z naderman $
|
|
|
4c79b5 |
* @copyright (c) 2005 phpBB Group
|
|
|
4c79b5 |
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* DO NOT CHANGE
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
if (!defined('IN_PHPBB'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
exit;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (empty($lang) || !is_array($lang))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$lang = array();
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// DEVELOPERS PLEASE NOTE
|
|
|
4c79b5 |
//
|
|
|
4c79b5 |
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
|
|
4c79b5 |
//
|
|
|
4c79b5 |
// Placeholders can now contain order information, e.g. instead of
|
|
|
4c79b5 |
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
|
|
4c79b5 |
// translators to re-order the output of data while ensuring it remains correct
|
|
|
4c79b5 |
//
|
|
|
4c79b5 |
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
|
|
4c79b5 |
// equally where a string contains only two placeholders which are used to wrap text
|
|
|
4c79b5 |
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$lang = array_merge($lang, array(
|
|
|
4c79b5 |
'ALL_AVAILABLE' => 'All available',
|
|
|
4c79b5 |
'ALL_RESULTS' => 'All results',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'DISPLAY_RESULTS' => 'Display results as',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'FOUND_SEARCH_MATCH' => 'Search found %d match',
|
|
|
4c79b5 |
'FOUND_SEARCH_MATCHES' => 'Search found %d matches',
|
|
|
4c79b5 |
'FOUND_MORE_SEARCH_MATCHES' => 'Search found more than %d matches',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'GLOBAL' => 'Global announcement',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'IGNORED_TERMS' => 'ignored',
|
|
|
4c79b5 |
'IGNORED_TERMS_EXPLAIN' => 'The following words in your search query were ignored because they are too common words: %s.',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'JUMP_TO_POST' => 'Jump to post',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'LOGIN_EXPLAIN_EGOSEARCH' => 'The board requires you to be registered and logged in to view your own posts.',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'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.',
|
|
|
4c79b5 |
'NO_RECENT_SEARCHES' => 'No searches have been carried out recently.',
|
|
|
4c79b5 |
'NO_SEARCH' => 'Sorry but you are not permitted to use the search system.',
|
|
|
4c79b5 |
'NO_SEARCH_RESULTS' => 'No suitable matches were found.',
|
|
|
4c79b5 |
'NO_SEARCH_TIME' => 'Sorry but you cannot use search at this time. Please try again in a few minutes.',
|
|
|
4c79b5 |
'WORD_IN_NO_POST' => 'No posts were found because the word %s is not contained in any post.',
|
|
|
4c79b5 |
'WORDS_IN_NO_POST' => 'No posts were found because the words %s are not contained in any post.',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'POST_CHARACTERS' => 'characters of posts',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'RECENT_SEARCHES' => 'Recent searches',
|
|
|
4c79b5 |
'RESULT_DAYS' => 'Limit results to previous',
|
|
|
4c79b5 |
'RESULT_SORT' => 'Sort results by',
|
|
|
4c79b5 |
'RETURN_FIRST' => 'Return first',
|
|
|
4c79b5 |
'RETURN_TO_SEARCH_ADV' => 'Return to advanced search',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'SEARCHED_FOR' => 'Search term used',
|
|
|
4c79b5 |
'SEARCHED_TOPIC' => 'Searched topic',
|
|
|
4c79b5 |
'SEARCH_ALL_TERMS' => 'Search for all terms or use query as entered',
|
|
|
4c79b5 |
'SEARCH_ANY_TERMS' => 'Search for any terms',
|
|
|
4c79b5 |
'SEARCH_AUTHOR' => 'Search for author',
|
|
|
4c79b5 |
'SEARCH_AUTHOR_EXPLAIN' => 'Use * as a wildcard for partial matches.',
|
|
|
4c79b5 |
'SEARCH_FIRST_POST' => 'First post of topics only',
|
|
|
4c79b5 |
'SEARCH_FORUMS' => 'Search in forums',
|
|
|
4c79b5 |
'SEARCH_FORUMS_EXPLAIN' => 'Select the forum or forums you wish to search in. Subforums are searched automatically if you do not disable “search subforums“ below.',
|
|
|
4c79b5 |
'SEARCH_IN_RESULTS' => 'Search these results',
|
|
|
4c79b5 |
'SEARCH_KEYWORDS_EXPLAIN' => 'Place + in front of a word which must be found and - in front of a word which must not be found. Put a list of words separated by | into brackets if only one of the words must be found. Use * as a wildcard for partial matches.',
|
|
|
4c79b5 |
'SEARCH_MSG_ONLY' => 'Message text only',
|
|
|
4c79b5 |
'SEARCH_OPTIONS' => 'Search options',
|
|
|
4c79b5 |
'SEARCH_QUERY' => 'Search query',
|
|
|
4c79b5 |
'SEARCH_SUBFORUMS' => 'Search subforums',
|
|
|
4c79b5 |
'SEARCH_TITLE_MSG' => 'Post subjects and message text',
|
|
|
4c79b5 |
'SEARCH_TITLE_ONLY' => 'Topic titles only',
|
|
|
4c79b5 |
'SEARCH_WITHIN' => 'Search within',
|
|
|
4c79b5 |
'SORT_ASCENDING' => 'Ascending',
|
|
|
4c79b5 |
'SORT_AUTHOR' => 'Author',
|
|
|
4c79b5 |
'SORT_DESCENDING' => 'Descending',
|
|
|
4c79b5 |
'SORT_FORUM' => 'Forum',
|
|
|
4c79b5 |
'SORT_POST_SUBJECT' => 'Post subject',
|
|
|
4c79b5 |
'SORT_TIME' => 'Post time',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'TOO_FEW_AUTHOR_CHARS' => 'You must specify at least %d characters of the authors name.',
|
|
|
4c79b5 |
));
|
|
|
4c79b5 |
|
|
|
4c79b5 |
?>
|