1<?php
2/**
3*
4* search [English]
5*
6* @package language
7* @version $Id$
8* @copyright (c) 2005 phpBB Group
9* @license http://opensource.org/licenses/gpl-license.php GNU Public License
10*
11*/
12
13/**
14* DO NOT CHANGE
15*/
16if (!defined('IN_PHPBB'))
17{
18	exit;
19}
20
21if (empty($lang) || !is_array($lang))
22{
23	$lang = array();
24}
25
26// DEVELOPERS PLEASE NOTE
27//
28// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
29//
30// Placeholders can now contain order information, e.g. instead of
31// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
32// translators to re-order the output of data while ensuring it remains correct
33//
34// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
35// equally where a string contains only two placeholders which are used to wrap text
36// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
37
38$lang = array_merge($lang, array(
39	'ALL_AVAILABLE'			=> 'All available',
40	'ALL_RESULTS'			=> 'All results',
41
42	'DISPLAY_RESULTS'		=> 'Display results as',
43
44	'FOUND_SEARCH_MATCH'		=> 'Search found %d match',
45	'FOUND_SEARCH_MATCHES'		=> 'Search found %d matches',
46	'FOUND_MORE_SEARCH_MATCHES'	=> 'Search found more than %d matches',
47
48	'GLOBAL'				=> 'Global announcement',
49
50	'IGNORED_TERMS'			=> 'ignored',
51	'IGNORED_TERMS_EXPLAIN'	=> 'The following words in your search query were ignored because they are too common words: <strong>%s</strong>.',
52
53	'JUMP_TO_POST'			=> 'Jump to post',
54
55	'LOGIN_EXPLAIN_EGOSEARCH'	=> 'The board requires you to be registered and logged in to view your own posts.',
56	'LOGIN_EXPLAIN_UNREADSEARCH'=> 'The board requires you to be registered and logged in to view your unread posts.',
57	'LOGIN_EXPLAIN_NEWPOSTS'	=> 'The board requires you to be registered and logged in to view new posts since your last visit.',
58
59	'MAX_NUM_SEARCH_KEYWORDS_REFINE'	=> 'You specified too many words to search for. Please do not enter more than %1$d words.',
60
61	'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.',
62	'NO_RECENT_SEARCHES'	=> 'No searches have been carried out recently.',
63	'NO_SEARCH'				=> 'Sorry but you are not permitted to use the search system.',
64	'NO_SEARCH_RESULTS'		=> 'No suitable matches were found.',
65	'NO_SEARCH_TIME'		=> 'Sorry but you cannot use search at this time. Please try again in a few minutes.',
66	'NO_SEARCH_UNREADS'		=> 'Sorry but searching for unread posts has been disabled on this board.',
67	'WORD_IN_NO_POST'		=> 'No posts were found because the word <strong>%s</strong> is not contained in any post.',
68	'WORDS_IN_NO_POST'		=> 'No posts were found because the words <strong>%s</strong> are not contained in any post.',
69
70	'POST_CHARACTERS'		=> 'characters of posts',
71
72	'RECENT_SEARCHES'		=> 'Recent searches',
73	'RESULT_DAYS'			=> 'Limit results to previous',
74	'RESULT_SORT'			=> 'Sort results by',
75	'RETURN_FIRST'			=> 'Return first',
76	'RETURN_TO_SEARCH_ADV'	=> 'Return to advanced search',
77
78	'SEARCHED_FOR'				=> 'Search term used',
79	'SEARCHED_TOPIC'			=> 'Searched topic',
80	'SEARCHED_QUERY'			=> 'Searched query',
81	'SEARCH_ALL_TERMS'			=> 'Search for all terms or use query as entered',
82	'SEARCH_ANY_TERMS'			=> 'Search for any terms',
83	'SEARCH_AUTHOR'				=> 'Search for author',
84	'SEARCH_AUTHOR_EXPLAIN'		=> 'Use * as a wildcard for partial matches.',
85	'SEARCH_FIRST_POST'			=> 'First post of topics only',
86	'SEARCH_FORUMS'				=> 'Search in forums',
87	'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.',
88	'SEARCH_IN_RESULTS'			=> 'Search these results',
89	'SEARCH_KEYWORDS_EXPLAIN'	=> 'Place <strong>+</strong> in front of a word which must be found and <strong>-</strong> in front of a word which must not be found. Put a list of words separated by <strong>|</strong> into brackets if only one of the words must be found. Use * as a wildcard for partial matches.',
90	'SEARCH_MSG_ONLY'			=> 'Message text only',
91	'SEARCH_OPTIONS'			=> 'Search options',
92	'SEARCH_QUERY'				=> 'Search query',
93	'SEARCH_SUBFORUMS'			=> 'Search subforums',
94	'SEARCH_TITLE_MSG'			=> 'Post subjects and message text',
95	'SEARCH_TITLE_ONLY'			=> 'Topic titles only',
96	'SEARCH_WITHIN'				=> 'Search within',
97	'SORT_ASCENDING'			=> 'Ascending',
98	'SORT_AUTHOR'				=> 'Author',
99	'SORT_DESCENDING'			=> 'Descending',
100	'SORT_FORUM'				=> 'Forum',
101	'SORT_POST_SUBJECT'			=> 'Post subject',
102	'SORT_TIME'					=> 'Post time',
103
104	'TOO_FEW_AUTHOR_CHARS'	=> 'You must specify at least %d characters of the authors name.',
105));
106
107?>