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

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