Verzeichnisstruktur phpBB-3.0.0


Veröffentlicht
12.12.2007

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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

search.php

Zuletzt modifiziert: 09.10.2024, 12:51 - Dateigröße: 4.10 KiB


001  <?php
002  /**
003  *
004  * search [English]
005  *
006  * @package language
007  * @version $Id$
008  * @copyright (c) 2005 phpBB Group
009  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
010  *
011  */
012   
013  /**
014  * DO NOT CHANGE
015  */
016  if (!defined('IN_PHPBB'))
017  {
018      exit;
019  }
020   
021  if (empty($lang) || !is_array($lang))
022  {
023      $lang = array();
024  }
025   
026  // DEVELOPERS PLEASE NOTE
027  //
028  // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
029  //
030  // Placeholders can now contain order information, e.g. instead of
031  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
032  // translators to re-order the output of data while ensuring it remains correct
033  //
034  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
035  // equally where a string contains only two placeholders which are used to wrap text
036  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
037   
038  $lang = array_merge($lang, array(
039      'ALL_AVAILABLE'            => 'All available',
040      'ALL_RESULTS'            => 'All results',
041   
042      'DISPLAY_RESULTS'        => 'Display results as',
043   
044      'FOUND_SEARCH_MATCH'        => 'Search found %d match',
045      'FOUND_SEARCH_MATCHES'        => 'Search found %d matches',
046      'FOUND_MORE_SEARCH_MATCHES'    => 'Search found more than %d matches',
047   
048      'GLOBAL'                => 'Global announcement',
049   
050      'IGNORED_TERMS'            => 'ignored',
051      'IGNORED_TERMS_EXPLAIN'    => 'The following words in your search query were ignored because they are too common words: <strong>%s</strong>.',
052   
053      'JUMP_TO_POST'            => 'Jump to post',
054   
055      'LOGIN_EXPLAIN_EGOSEARCH'    => 'The board requires you to be registered and logged in to view your own posts.',
056   
057      '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.',
058      'NO_RECENT_SEARCHES'    => 'No searches have been carried out recently.',
059      'NO_SEARCH'                => 'Sorry but you are not permitted to use the search system.',
060      'NO_SEARCH_RESULTS'        => 'No suitable matches were found.',
061      'NO_SEARCH_TIME'        => 'Sorry but you cannot use search at this time. Please try again in a few minutes.',
062      'WORD_IN_NO_POST'        => 'No posts were found because the word <strong>%s</strong> is not contained in any post.',
063      'WORDS_IN_NO_POST'        => 'No posts were found because the words <strong>%s</strong> are not contained in any post.',
064   
065      'POST_CHARACTERS'        => 'characters of posts',
066   
067      'RECENT_SEARCHES'        => 'Recent searches',
068      'RESULT_DAYS'            => 'Limit results to previous',
069      'RESULT_SORT'            => 'Sort results by',
070      'RETURN_FIRST'            => 'Return first',
071      'RETURN_TO_SEARCH_ADV'    => 'Return to advanced search',
072   
073      'SEARCHED_FOR'                => 'Search term used',
074      'SEARCHED_TOPIC'            => 'Searched topic',
075      'SEARCH_ALL_TERMS'            => 'Search for all terms or use query as entered',
076      'SEARCH_ANY_TERMS'            => 'Search for any terms',
077      'SEARCH_AUTHOR'                => 'Search for author',
078      'SEARCH_AUTHOR_EXPLAIN'        => 'Use * as a wildcard for partial matches.',
079      'SEARCH_FIRST_POST'            => 'First post of topics only',
080      'SEARCH_FORUMS'                => 'Search in forums',
081      '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.',
082      'SEARCH_IN_RESULTS'            => 'Search these results',
083      '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.',
084      'SEARCH_MSG_ONLY'            => 'Message text only',
085      'SEARCH_OPTIONS'            => 'Search options',
086      'SEARCH_QUERY'                => 'Search query',
087      'SEARCH_SUBFORUMS'            => 'Search subforums',
088      'SEARCH_TITLE_MSG'            => 'Post subjects and message text',
089      'SEARCH_TITLE_ONLY'            => 'Topic titles only',
090      'SEARCH_WITHIN'                => 'Search within',
091      'SORT_ASCENDING'            => 'Ascending',
092      'SORT_AUTHOR'                => 'Author',
093      'SORT_DESCENDING'            => 'Descending',
094      'SORT_FORUM'                => 'Forum',
095      'SORT_POST_SUBJECT'            => 'Post subject',
096      'SORT_TIME'                    => 'Post time',
097   
098      'TOO_FEW_AUTHOR_CHARS'    => 'You must specify at least %d characters of the authors name.',
099  ));
100   
101  ?>