2004-02-28 21:16:15 +00:00
< ? php
2005-04-09 12:26:45 +00:00
/**
*
* search [ English ]
*
2005-12-12 23:17:30 +00:00
* @ package language
2005-04-09 12:26:45 +00:00
* @ version $Id $
* @ copyright ( c ) 2005 phpBB Group
* @ license http :// opensource . org / licenses / gpl - license . php GNU Public License
*
*/
2004-02-28 21:16:15 +00:00
2005-04-09 12:26:45 +00:00
/**
* DO NOT CHANGE
*/
2004-03-10 20:30:26 +00:00
if ( empty ( $lang ) || ! is_array ( $lang ))
2004-02-28 21:16:15 +00:00
{
$lang = array ();
}
// DEVELOPERS PLEASE NOTE
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
2005-12-12 23:17:30 +00:00
$lang = array_merge ( $lang , array (
2004-02-28 21:16:15 +00:00
'ALL_AVAILABLE' => 'All available' ,
'ALL_RESULTS' => 'All results' ,
'DISPLAY_RESULTS' => 'Display results as' ,
'FOUND_SEARCH_MATCH' => 'Search found %d match' ,
'FOUND_SEARCH_MATCHES' => 'Search found %d matches' ,
2006-01-11 18:56:07 +00:00
'FOUND_MORE_SEARCH_MATCHES' => 'Search found more than %d matches' ,
2004-02-28 21:16:15 +00:00
2006-01-21 22:57:42 +00:00
'GLOBAL' => 'Global topic' ,
2004-02-28 21:16:15 +00:00
'IGNORED_TERMS' => 'ignored' ,
2006-01-21 22:57:42 +00:00
'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.' ,
2004-02-28 21:16:15 +00:00
'NO_RECENT_SEARCHES' => 'No searches have been carried out recently' ,
'NO_SEARCH' => 'Sorry but you are not permitted to use the search system.' ,
'NO_SEARCH_RESULTS' => 'No suitable matches were found.' ,
'NO_SEARCH_TIME' => 'Sorry but you cannot use search at this time. Please try again in a few minutes.' ,
'POST_CHARACTERS' => 'characters of posts' ,
'RECENT_SEARCHES' => 'Recent searches' ,
'RESULT_DAYS' => 'Limit results to previous' ,
'RESULT_SORT' => 'Sort results by' ,
'RETURN_FIRST' => 'Return first' ,
'SEARCHED_FOR' => 'Search term used' ,
2006-01-11 18:56:07 +00:00
'SEARCHED_TOPIC' => 'Searched topic' ,
2004-02-28 21:16:15 +00:00
'SEARCH_ALL_TERMS' => 'Search for all terms or use query as entered' ,
'SEARCH_ANY_TERMS' => 'Search for any terms' ,
'SEARCH_AUTHOR' => 'Search for Author' ,
'SEARCH_AUTHOR_EXPLAIN' => 'Use * as a wildcard for partial matches' ,
2006-01-21 22:57:42 +00:00
'SEARCH_FIRST_POST' => 'First post of topics only' ,
2004-02-28 21:16:15 +00:00
'SEARCH_FORUMS' => 'Search in forums' ,
'SEARCH_FORUMS_EXPLAIN' => 'Select the forum or forums you wish to search in. For speed all subforums can be searched by selecting the parent and setting enable search subforums below.' ,
'SEARCH_IN_RESULTS' => 'Search these results' ,
'SEARCH_KEYWORDS' => 'Search for Keywords' ,
2006-01-21 22:57:42 +00:00
'SEARCH_KEYWORDS_EXPLAIN' => 'Place <b>+</b> in front of a word which must be found and <b>-</b> in front of a word which must not be found. If you place <b>|</b> in front of words, each result has to contain at least one of these words. Use * as a wildcard for partial matches' ,
2004-02-28 21:16:15 +00:00
'SEARCH_MSG_ONLY' => 'Message text only' ,
'SEARCH_OPTIONS' => 'Search Options' ,
'SEARCH_QUERY' => 'Search Query' ,
'SEARCH_SUBFORUMS' => 'Search subforums' ,
2006-01-21 22:57:42 +00:00
'SEARCH_TITLE_MSG' => 'Post subjects and message text' ,
2004-02-28 21:16:15 +00:00
'SEARCH_TITLE_ONLY' => 'Topic titles only' ,
'SEARCH_WITHIN' => 'Search within' ,
'SORT_ASCENDING' => 'Ascending' ,
'SORT_AUTHOR' => 'Author' ,
'SORT_DESCENDING' => 'Descending' ,
'SORT_FORUM' => 'Forum' ,
'SORT_POST_SUBJECT' => 'Post Subject' ,
'SORT_TIME' => 'Post Time' ,
2006-01-21 22:57:42 +00:00
'TOO_FEW_AUTHOR_CHARS' => 'You must specify at least %d characters of the authors name.' ,
2005-12-12 23:17:30 +00:00
));
2004-02-28 21:16:15 +00:00
?>