Blame Identity/Webenv/phpBB/3.0.4/language/en/search.php

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