Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
search.php
001 <?php
002 /**
003 *
004 * This file is part of the phpBB Forum Software package.
005 *
006 * @copyright (c) phpBB Limited <https://www.phpbb.com>
007 * @license GNU General Public License, version 2 (GPL-2.0)
008 *
009 * For full copyright and license information, please see
010 * the docs/CREDITS.txt file.
011 *
012 */
013
014 /**
015 * DO NOT CHANGE
016 */
017 if (!defined('IN_PHPBB'))
018 {
019 exit;
020 }
021
022 if (empty($lang) || !is_array($lang))
023 {
024 $lang = array();
025 }
026
027 // DEVELOPERS PLEASE NOTE
028 //
029 // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
030 //
031 // Placeholders can now contain order information, e.g. instead of
032 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
033 // translators to re-order the output of data while ensuring it remains correct
034 //
035 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
036 // equally where a string contains only two placeholders which are used to wrap text
037 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
038
039 $lang = array_merge($lang, array(
040 'ALL_AVAILABLE' => 'All available',
041 'ALL_RESULTS' => 'All results',
042
043 'DISPLAY_RESULTS' => 'Display results as',
044
045 'FOUND_SEARCH_MATCHES' => array(
046 1 => 'Search found %d match',
047 2 => 'Search found %d matches',
048 ),
049 'FOUND_MORE_SEARCH_MATCHES' => array(
050 1 => 'Search found more than %d match',
051 2 => 'Search found more than %d matches',
052 ),
053
054 'GLOBAL' => 'Global announcement',
055
056 'IGNORED_TERMS' => 'ignored',
057 'IGNORED_TERMS_EXPLAIN' => 'The following words in your search query were ignored because they are too common words: <strong>%s</strong>.',
058
059 'JUMP_TO_POST' => 'Jump to post',
060
061 'LOGIN_EXPLAIN_EGOSEARCH' => 'The board requires you to be registered and logged in to view your own posts.',
062 'LOGIN_EXPLAIN_UNREADSEARCH'=> 'The board requires you to be registered and logged in to view your unread posts.',
063 'LOGIN_EXPLAIN_NEWPOSTS' => 'The board requires you to be registered and logged in to view new posts since your last visit.',
064
065 'MAX_NUM_SEARCH_KEYWORDS_REFINE' => array(
066 1 => 'You specified too many words to search for. Please do not enter more than %1$d word.',
067 2 => 'You specified too many words to search for. Please do not enter more than %1$d words.',
068 ),
069
070 'NO_KEYWORDS' => 'You must specify at least one word to search for. Each word must consist of at least %s and must not contain more than %s excluding wildcards.',
071 'NO_RECENT_SEARCHES' => 'No searches have been carried out recently.',
072 'NO_SEARCH' => 'Sorry but you are not permitted to use the search system.',
073 'NO_SEARCH_RESULTS' => 'No suitable matches were found.',
074 'NO_SEARCH_LOAD' => 'Sorry but you cannot use search at this time. The server has high load. Please try again later.',
075 'NO_SEARCH_TIME' => array(
076 1 => 'Sorry but you cannot use search at this time. Please try again in %d second.',
077 2 => 'Sorry but you cannot use search at this time. Please try again in %d seconds.',
078 ),
079 'NO_SEARCH_UNREADS' => 'Sorry but searching for unread posts has been disabled on this board.',
080 'WORD_IN_NO_POST' => 'No posts were found because the word <strong>%s</strong> is not contained in any post.',
081 'WORDS_IN_NO_POST' => 'No posts were found because the words <strong>%s</strong> are not contained in any post.',
082
083 'POST_CHARACTERS' => 'characters of posts',
084 'PHRASE_SEARCH_DISABLED' => 'Searching by exact phrase is not supported on this board.',
085
086 'RECENT_SEARCHES' => 'Recent searches',
087 'RESULT_DAYS' => 'Limit results to previous',
088 'RESULT_SORT' => 'Sort results by',
089 'RETURN_FIRST' => 'Return first',
090 'RETURN_FIRST_EXPLAIN' => 'Set to 0 to display the entire post.',
091 'GO_TO_SEARCH_ADV' => 'Go to advanced search',
092
093 'SEARCHED_FOR' => 'Search term used',
094 'SEARCHED_TOPIC' => 'Searched topic',
095 'SEARCHED_QUERY' => 'Searched query',
096 'SEARCH_ALL_TERMS' => 'Search for all terms or use query as entered',
097 'SEARCH_ANY_TERMS' => 'Search for any terms',
098 'SEARCH_AUTHOR' => 'Search for author',
099 'SEARCH_AUTHOR_EXPLAIN' => 'Use * as a wildcard for partial matches.',
100 'SEARCH_FIRST_POST' => 'First post of topics only',
101 'SEARCH_FORUMS' => 'Search in forums',
102 '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.',
103 'SEARCH_IN_RESULTS' => 'Search these results',
104 '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.',
105 'SEARCH_MSG_ONLY' => 'Message text only',
106 'SEARCH_OPTIONS' => 'Search options',
107 'SEARCH_QUERY' => 'Search query',
108 'SEARCH_SUBFORUMS' => 'Search subforums',
109 'SEARCH_TITLE_MSG' => 'Post subjects and message text',
110 'SEARCH_TITLE_ONLY' => 'Topic titles only',
111 'SEARCH_WITHIN' => 'Search within',
112 'SORT_ASCENDING' => 'Ascending',
113 'SORT_AUTHOR' => 'Author',
114 'SORT_DESCENDING' => 'Descending',
115 'SORT_FORUM' => 'Forum',
116 'SORT_POST_SUBJECT' => 'Post subject',
117 'SORT_TIME' => 'Post time',
118 'SPHINX_SEARCH_FAILED' => 'Search failed: %s',
119 'SPHINX_SEARCH_FAILED_LOG' => 'Sorry, search could not be performed. More information about this failure has been logged in the error log.',
120
121 'TOO_FEW_AUTHOR_CHARS' => array(
122 1 => 'You must specify at least %d character of the authors name.',
123 2 => 'You must specify at least %d characters of the authors name.',
124 ),
125 ));
126