source: trunk/forum/language/en/search.php

Last change on this file was 702, checked in by george, 15 years ago
  • Upraveno: Aktualizace fóra.
File size: 4.3 KB
Line 
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
58 'MAX_NUM_SEARCH_KEYWORDS_REFINE' => 'You specified too many words to search for. Please do not enter more than %1$d words.',
59
60 '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.',
61 'NO_RECENT_SEARCHES' => 'No searches have been carried out recently.',
62 'NO_SEARCH' => 'Sorry but you are not permitted to use the search system.',
63 'NO_SEARCH_RESULTS' => 'No suitable matches were found.',
64 'NO_SEARCH_TIME' => 'Sorry but you cannot use search at this time. Please try again in a few minutes.',
65 'WORD_IN_NO_POST' => 'No posts were found because the word <strong>%s</strong> is not contained in any post.',
66 'WORDS_IN_NO_POST' => 'No posts were found because the words <strong>%s</strong> are not contained in any post.',
67
68 'POST_CHARACTERS' => 'characters of posts',
69
70 'RECENT_SEARCHES' => 'Recent searches',
71 'RESULT_DAYS' => 'Limit results to previous',
72 'RESULT_SORT' => 'Sort results by',
73 'RETURN_FIRST' => 'Return first',
74 'RETURN_TO_SEARCH_ADV' => 'Return to advanced search',
75
76 'SEARCHED_FOR' => 'Search term used',
77 'SEARCHED_TOPIC' => 'Searched topic',
78 'SEARCH_ALL_TERMS' => 'Search for all terms or use query as entered',
79 'SEARCH_ANY_TERMS' => 'Search for any terms',
80 'SEARCH_AUTHOR' => 'Search for author',
81 'SEARCH_AUTHOR_EXPLAIN' => 'Use * as a wildcard for partial matches.',
82 'SEARCH_FIRST_POST' => 'First post of topics only',
83 'SEARCH_FORUMS' => 'Search in forums',
84 '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.',
85 'SEARCH_IN_RESULTS' => 'Search these results',
86 '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.',
87 'SEARCH_MSG_ONLY' => 'Message text only',
88 'SEARCH_OPTIONS' => 'Search options',
89 'SEARCH_QUERY' => 'Search query',
90 'SEARCH_SUBFORUMS' => 'Search subforums',
91 'SEARCH_TITLE_MSG' => 'Post subjects and message text',
92 'SEARCH_TITLE_ONLY' => 'Topic titles only',
93 'SEARCH_WITHIN' => 'Search within',
94 'SORT_ASCENDING' => 'Ascending',
95 'SORT_AUTHOR' => 'Author',
96 'SORT_DESCENDING' => 'Descending',
97 'SORT_FORUM' => 'Forum',
98 'SORT_POST_SUBJECT' => 'Post subject',
99 'SORT_TIME' => 'Post time',
100
101 'TOO_FEW_AUTHOR_CHARS' => 'You must specify at least %d characters of the authors name.',
102));
103
104?>
Note: See TracBrowser for help on using the repository browser.