[ Index ]

PHP Cross Reference of phpBB 3.0 Beta 3

title

Body

[close]

/language/en/ -> search.php (source)

   1  <?php
   2  /** 
   3  *
   4  * search [English]
   5  *
   6  * @package language
   7  * @version $Id: search.php,v 1.15 2006/10/08 11:25:20 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 (empty($lang) || !is_array($lang))
  17  {
  18      $lang = array();
  19  }
  20  
  21  // DEVELOPERS PLEASE NOTE
  22  //
  23  // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
  24  //
  25  // Placeholders can now contain order information, e.g. instead of
  26  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
  27  // translators to re-order the output of data while ensuring it remains correct
  28  //
  29  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
  30  // equally where a string contains only two placeholders which are used to wrap text
  31  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
  32  
  33  $lang = array_merge($lang, array(
  34      'ALL_AVAILABLE'            => 'All available',
  35      'ALL_RESULTS'            => 'All results',
  36  
  37      'DISPLAY_RESULTS'        => 'Display results as',
  38  
  39      'FOUND_SEARCH_MATCH'        => 'Search found %d match',
  40      'FOUND_SEARCH_MATCHES'        => 'Search found %d matches',
  41      'FOUND_MORE_SEARCH_MATCHES'    => 'Search found more than %d matches',
  42  
  43      'GLOBAL'                => 'Global announcement',
  44  
  45      'IGNORED_TERMS'            => 'ignored',
  46      'IGNORED_TERMS_EXPLAIN'    => 'The following words in your search query were ignored: <strong>%s</strong>',
  47  
  48      '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.',
  49      'NO_RECENT_SEARCHES'    => 'No searches have been carried out recently',
  50      'NO_SEARCH'                => 'Sorry but you are not permitted to use the search system.',
  51      'NO_SEARCH_RESULTS'        => 'No suitable matches were found.',
  52      'NO_SEARCH_TIME'        => 'Sorry but you cannot use search at this time. Please try again in a few minutes.',
  53      'WORD_IN_NO_POST'        => 'No posts were found because the word %s is not contained in any post.',
  54      'WORDS_IN_NO_POST'        => 'No posts were found because the words %s are not contained in any post.',
  55  
  56      'POST_CHARACTERS'        => 'characters of posts',
  57  
  58      'RECENT_SEARCHES'        => 'Recent searches',
  59      'RESULT_DAYS'            => 'Limit results to previous',
  60      'RESULT_SORT'            => 'Sort results by',
  61      'RETURN_FIRST'            => 'Return first',
  62  
  63      'SEARCHED_FOR'                => 'Search term used',
  64      'SEARCHED_TOPIC'            => 'Searched topic',
  65      'SEARCH_ALL_TERMS'            => 'Search for all terms or use query as entered',
  66      'SEARCH_ANY_TERMS'            => 'Search for any terms',
  67      'SEARCH_AUTHOR'                => 'Search for author',
  68      'SEARCH_AUTHOR_EXPLAIN'        => 'Use * as a wildcard for partial matches',
  69      'SEARCH_FIRST_POST'            => 'First post of topics only',
  70      'SEARCH_FORUMS'                => 'Search in forums',
  71      'SEARCH_FORUMS_EXPLAIN'        => 'Select the forum or forums you wish to search in. For speed all subforums can be searched by selecting the parent and setting enable search subforums below.',
  72      'SEARCH_IN_RESULTS'            => 'Search these results',
  73      '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 seperated by <strong>|</strong> into brackets if only one of the words must be found. Use * as a wildcard for partial matches.',
  74      'SEARCH_MSG_ONLY'            => 'Message text only',
  75      'SEARCH_OPTIONS'            => 'Search Options',
  76      'SEARCH_QUERY'                => 'Search Query',
  77      'SEARCH_SUBFORUMS'            => 'Search subforums',
  78      'SEARCH_TITLE_MSG'            => 'Post subjects and message text',
  79      'SEARCH_TITLE_ONLY'            => 'Topic titles only',
  80      'SEARCH_WITHIN'                => 'Search within',
  81      'SORT_ASCENDING'            => 'Ascending',
  82      'SORT_AUTHOR'                => 'Author',
  83      'SORT_DESCENDING'            => 'Descending',
  84      'SORT_FORUM'                => 'Forum',
  85      'SORT_POST_SUBJECT'            => 'Post subject',
  86      'SORT_TIME'                    => 'Post time',
  87  
  88      'TOO_FEW_AUTHOR_CHARS'    => 'You must specify at least %d characters of the authors name.',
  89  ));
  90  
  91  ?>


Generated: Wed Nov 22 00:35:05 2006 Cross-referenced by PHPXref 0.6