~azzar1/unity/add-show-desktop-key

443 by dcoles
Added Forum application along with unmodifed version of phpBB3 "Olympus" 3.0.0
1
<?php
2
/**
3
*
4
* search [English]
5
*
6
* @package language
7
* @version $Id: search.php,v 1.26 2007/10/04 15:07:24 acydburn Exp $
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
*/
16
if (!defined('IN_PHPBB'))
17
{
18
	exit;
19
}
20
21
if (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
57
	'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.',
58
	'NO_RECENT_SEARCHES'	=> 'No searches have been carried out recently.',
59
	'NO_SEARCH'				=> 'Sorry but you are not permitted to use the search system.',
60
	'NO_SEARCH_RESULTS'		=> 'No suitable matches were found.',
61
	'NO_SEARCH_TIME'		=> 'Sorry but you cannot use search at this time. Please try again in a few minutes.',
62
	'WORD_IN_NO_POST'		=> 'No posts were found because the word <strong>%s</strong> is not contained in any post.',
63
	'WORDS_IN_NO_POST'		=> 'No posts were found because the words <strong>%s</strong> are not contained in any post.',
64
65
	'POST_CHARACTERS'		=> 'characters of posts',
66
67
	'RECENT_SEARCHES'		=> 'Recent searches',
68
	'RESULT_DAYS'			=> 'Limit results to previous',
69
	'RESULT_SORT'			=> 'Sort results by',
70
	'RETURN_FIRST'			=> 'Return first',
71
	'RETURN_TO_SEARCH_ADV'	=> 'Return to advanced search',
72
73
	'SEARCHED_FOR'				=> 'Search term used',
74
	'SEARCHED_TOPIC'			=> 'Searched topic',
75
	'SEARCH_ALL_TERMS'			=> 'Search for all terms or use query as entered',
76
	'SEARCH_ANY_TERMS'			=> 'Search for any terms',
77
	'SEARCH_AUTHOR'				=> 'Search for author',
78
	'SEARCH_AUTHOR_EXPLAIN'		=> 'Use * as a wildcard for partial matches.',
79
	'SEARCH_FIRST_POST'			=> 'First post of topics only',
80
	'SEARCH_FORUMS'				=> 'Search in forums',
81
	'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.',
82
	'SEARCH_IN_RESULTS'			=> 'Search these results',
83
	'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.',
84
	'SEARCH_MSG_ONLY'			=> 'Message text only',
85
	'SEARCH_OPTIONS'			=> 'Search options',
86
	'SEARCH_QUERY'				=> 'Search query',
87
	'SEARCH_SUBFORUMS'			=> 'Search subforums',
88
	'SEARCH_TITLE_MSG'			=> 'Post subjects and message text',
89
	'SEARCH_TITLE_ONLY'			=> 'Topic titles only',
90
	'SEARCH_WITHIN'				=> 'Search within',
91
	'SORT_ASCENDING'			=> 'Ascending',
92
	'SORT_AUTHOR'				=> 'Author',
93
	'SORT_DESCENDING'			=> 'Descending',
94
	'SORT_FORUM'				=> 'Forum',
95
	'SORT_POST_SUBJECT'			=> 'Post subject',
96
	'SORT_TIME'					=> 'Post time',
97
98
	'TOO_FEW_AUTHOR_CHARS'	=> 'You must specify at least %d characters of the authors name.',
99
));
100
101
?>