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:53 - Dateigröße: 7.12 KiB


001  <?php
002  /**
003  *
004  * acp_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      'ACP_SEARCH_INDEX_EXPLAIN'                => 'Here you can manage the search backend’s indexes. Since you normally use only one backend you should delete all indexes that you do not make use of. After altering some of the search settings (e.g. the number of minimum/maximum chars) it might be worth recreating the index so it reflects those changes.',
040      'ACP_SEARCH_SETTINGS_EXPLAIN'            => 'Here you can define what search backend will be used for indexing posts and performing searches. You can set various options that can influence how much processing these actions require. Some of these settings are the same for all search engine backends.',
041   
042      'COMMON_WORD_THRESHOLD'                    => 'Common word threshold',
043      'COMMON_WORD_THRESHOLD_EXPLAIN'            => 'Words which are contained in a greater percentage of all posts will be regarded as common. Common words are ignored in search queries. Set to zero to disable. Only takes effect if there are more than 100 posts.',
044      'CONFIRM_SEARCH_BACKEND'                => 'Are you sure you wish to switch to a different search backend? After changing the search backend you will have to create an index for the new search backend. If you don’t plan on switching back to the old search backend you can also delete the old backend’s index in order to free system resources.',
045      'CONTINUE_DELETING_INDEX'                => 'Continue previous index removal process',
046      'CONTINUE_DELETING_INDEX_EXPLAIN'        => 'An index removal process has been started. In order to access the search index page you will have to complete it or cancel it.',
047      'CONTINUE_INDEXING'                        => 'Continue previous indexing process',
048      'CONTINUE_INDEXING_EXPLAIN'                => 'An indexing process has been started. In order to access the search index page you will have to complete it or cancel it.',
049      'CREATE_INDEX'                            => 'Create index',
050   
051      'DELETE_INDEX'                            => 'Delete index',
052      'DELETING_INDEX_IN_PROGRESS'            => 'Deleting the index in progress',
053      'DELETING_INDEX_IN_PROGRESS_EXPLAIN'    => 'The search backend is currently cleaning its index. This can take a few minutes.',
054   
055      'FULLTEXT_MYSQL_INCOMPATIBLE_VERSION'    => 'The MySQL fulltext backend can only be used with MySQL4 and above.',
056      'FULLTEXT_MYSQL_NOT_MYISAM'                => 'MySQL fulltext indexes can only be used with MyISAM tables.',
057      'FULLTEXT_MYSQL_TOTAL_POSTS'            => 'Total number of indexed posts',
058      'FULLTEXT_MYSQL_MBSTRING'                => 'Support for non-latin UTF-8 characters using mbstring:',
059      'FULLTEXT_MYSQL_PCRE'                    => 'Support for non-latin UTF-8 characters using PCRE:',
060      'FULLTEXT_MYSQL_MBSTRING_EXPLAIN'        => 'If PCRE does not have unicode character properties, the search backend will try to use mbstring’s regular expression engine.',
061      'FULLTEXT_MYSQL_PCRE_EXPLAIN'            => 'This search backend requires PCRE unicode character properties, only available in PHP 4.4, 5.1 and above, if you want to search for non-latin characters.',
062   
063      'GENERAL_SEARCH_SETTINGS'                => 'General search settings',
064      'GO_TO_SEARCH_INDEX'                    => 'Go to search index page',
065   
066      'INDEX_STATS'                            => 'Index statistics',
067      'INDEXING_IN_PROGRESS'                    => 'Indexing in progress',
068      'INDEXING_IN_PROGRESS_EXPLAIN'            => 'The search backend is currently indexing all posts on the board. This can take from a few minutes to a few hours depending on your board’s size.',
069   
070      'LIMIT_SEARCH_LOAD'                        => 'Search page system load limit',
071      'LIMIT_SEARCH_LOAD_EXPLAIN'                => 'If the 1 minute system load exceeds this value the search page will go offline, 1.0 equals ~100% utilisation of one processor. This only functions on UNIX based servers.',
072   
073      'MAX_SEARCH_CHARS'                        => 'Max characters indexed by search',
074      'MAX_SEARCH_CHARS_EXPLAIN'                => 'Words with no more than this many characters will be indexed for searching.',
075      'MIN_SEARCH_CHARS'                        => 'Min characters indexed by search',
076      'MIN_SEARCH_CHARS_EXPLAIN'                => 'Words with at least this many characters will be indexed for searching.',
077      'MIN_SEARCH_AUTHOR_CHARS'                => 'Min author name characters',
078      'MIN_SEARCH_AUTHOR_CHARS_EXPLAIN'        => 'Users have to enter at least this many characters of the name when performing a wildcard author search. If the author’s username is shorter than this number you can still search for the author’s posts by entering the complete username.',
079   
080      'PROGRESS_BAR'                            => 'Progress bar',
081   
082      'SEARCH_GUEST_INTERVAL'                    => 'Guest search flood interval',
083      'SEARCH_GUEST_INTERVAL_EXPLAIN'            => 'Number of seconds guests must wait between searches. If one guest searches all others have to wait until the time interval passed.',
084      'SEARCH_INDEX_CREATE_REDIRECT'            => 'All posts up to post id %1$d have now been indexed, of which %2$d posts were within this step.<br />The current rate of indexing is approximately %3$.1f posts per second.<br />Indexing in progress…',
085      'SEARCH_INDEX_DELETE_REDIRECT'            => 'All posts up to post id %1$d have been removed from the search index.<br />Deleting in progress…',
086      'SEARCH_INDEX_CREATED'                    => 'Successfully indexed all posts in the board database.',
087      'SEARCH_INDEX_REMOVED'                    => 'Successfully deleted the search index for this backend.',
088      'SEARCH_INTERVAL'                        => 'User search flood interval',
089      'SEARCH_INTERVAL_EXPLAIN'                => 'Number of seconds users must wait between searches. This interval is checked independently for each user.',
090      'SEARCH_STORE_RESULTS'                    => 'Search result cache length',
091      'SEARCH_STORE_RESULTS_EXPLAIN'            => 'Cached search results will expire after this time, in seconds. Set to 0 if you want to disable search cache.',
092      'SEARCH_TYPE'                            => 'Search backend',
093      'SEARCH_TYPE_EXPLAIN'                    => 'phpBB allows you to choose the backend that is used for searching text in post contents. By default the search will use phpBB’s own fulltext search.',
094      'SWITCHED_SEARCH_BACKEND'                => 'You switched the search backend. In order to use the new search backend you should make sure that there is an index for the backend you chose.',
095   
096      'TOTAL_WORDS'                            => 'Total number of indexed words',
097      'TOTAL_MATCHES'                            => 'Total number of word to post relations indexed',
098   
099      'YES_SEARCH'                            => 'Enable search facilities',
100      'YES_SEARCH_EXPLAIN'                    => 'Enables user facing search functionality including member search.',
101      'YES_SEARCH_UPDATE'                        => 'Enable fulltext updating',
102      'YES_SEARCH_UPDATE_EXPLAIN'                => 'Updating of fulltext indexes when posting, overridden if search is disabled.',
103  ));
104   
105  ?>