Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 79 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
||
| 1 | <?php |
| 2 | /** |
| 3 | * |
| 4 | * This file is part of the phpBB Forum Software package. |
| 5 | * |
| 6 | * @copyright (c) phpBB Limited <https://www.phpbb.com> |
| 7 | * @license GNU General Public License, version 2 (GPL-2.0) |
| 8 | * |
| 9 | * For full copyright and license information, please see |
| 10 | * the docs/CREDITS.txt file. |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | /** |
| 15 | * DO NOT CHANGE |
| 16 | */ |
| 17 | if (!defined('IN_PHPBB')) |
| 18 | { |
| 19 | exit; |
| 20 | } |
| 21 | |
| 22 | if (empty($lang) || !is_array($lang)) |
| 23 | { |
| 24 | $lang = array(); |
| 25 | } |
| 26 | |
| 27 | // DEVELOPERS PLEASE NOTE |
| 28 | // |
| 29 | // All language files should use UTF-8 as their encoding and the files must not contain a BOM. |
| 30 | // |
| 31 | // Placeholders can now contain order information, e.g. instead of |
| 32 | // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows |
| 33 | // translators to re-order the output of data while ensuring it remains correct |
| 34 | // |
| 35 | // You do not need this where single placeholders are used, e.g. 'Message %d' is fine |
| 36 | // equally where a string contains only two placeholders which are used to wrap text |
| 37 | // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine |
| 38 | |
| 39 | $lang = array_merge($lang, array( |
| 40 | 'ALL_AVAILABLE' => 'All available', |
| 41 | 'ALL_RESULTS' => 'All results', |
| 42 | |
| 43 | 'DISPLAY_RESULTS' => 'Display results as', |
| 44 | |
| 45 | 'FOUND_SEARCH_MATCHES' => array( |
| 46 | 1 => 'Search found %d match', |
| 47 | 2 => 'Search found %d matches', |
| 48 | ), |
| 49 | 'FOUND_MORE_SEARCH_MATCHES' => array( |
| 50 | 1 => 'Search found more than %d match', |
| 51 | 2 => 'Search found more than %d matches', |
| 52 | ), |
| 53 | |
| 54 | 'GLOBAL' => 'Global announcement', |
| 55 | |
| 56 | 'IGNORED_TERMS' => 'ignored', |
| 57 | 'IGNORED_TERMS_EXPLAIN' => 'The following words in your search query were ignored because they are too common words: <strong>%s</strong>.', |
| 58 | |
| 59 | 'JUMP_TO_POST' => 'Jump to post', |
| 60 | |
| 61 | 'LOGIN_EXPLAIN_EGOSEARCH' => 'The board requires you to be registered and logged in to view your own posts.', |
| 62 | 'LOGIN_EXPLAIN_UNREADSEARCH'=> 'The board requires you to be registered and logged in to view your unread posts.', |
| 63 | 'LOGIN_EXPLAIN_NEWPOSTS' => 'The board requires you to be registered and logged in to view new posts since your last visit.', |
| 64 | |
| 65 | 'MAX_NUM_SEARCH_KEYWORDS_REFINE' => array( |
| 66 | 1 => 'You specified too many words to search for. Please do not enter more than %1$d word.', |
| 67 | 2 => 'You specified too many words to search for. Please do not enter more than %1$d words.', |
| 68 | ), |
| 69 | |
| 70 | '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.', |
| 71 | 'NO_RECENT_SEARCHES' => 'No searches have been carried out recently.', |
| 72 | 'NO_SEARCH' => 'Sorry but you are not permitted to use the search system.', |
| 73 | 'NO_SEARCH_RESULTS' => 'No suitable matches were found.', |
| 74 | 'NO_SEARCH_LOAD' => 'Sorry but you cannot use search at this time. The server has high load. Please try again later.', |
| 75 | 'NO_SEARCH_TIME' => array( |
| 76 | 1 => 'Sorry but you cannot use search at this time. Please try again in %d second.', |
| 77 | 2 => 'Sorry but you cannot use search at this time. Please try again in %d seconds.', |
| 78 | ), |
| 79 | 'NO_SEARCH_UNREADS' => 'Sorry but searching for unread posts has been disabled on this board.', |
| 80 | 'WORD_IN_NO_POST' => 'No posts were found because the word <strong>%s</strong> is not contained in any post.', |
| 81 | 'WORDS_IN_NO_POST' => 'No posts were found because the words <strong>%s</strong> are not contained in any post.', |
| 82 | |
| 83 | 'POST_CHARACTERS' => 'characters of posts', |
| 84 | 'PHRASE_SEARCH_DISABLED' => 'Searching by exact phrase is not supported on this board.', |
| 85 | |
| 86 | 'RECENT_SEARCHES' => 'Recent searches', |
| 87 | 'RESULT_DAYS' => 'Limit results to previous', |
| 88 | 'RESULT_SORT' => 'Sort results by', |
| 89 | 'RETURN_FIRST' => 'Return first', |
| 90 | 'RETURN_FIRST_EXPLAIN' => 'Set to 0 to display the entire post.', |
| 91 | 'GO_TO_SEARCH_ADV' => 'Go to advanced search', |
| 92 | |
| 93 | 'SEARCHED_FOR' => 'Search term used', |
| 94 | 'SEARCHED_TOPIC' => 'Searched topic', |
| 95 | 'SEARCHED_QUERY' => 'Searched query', |
| 96 | 'SEARCH_ALL_TERMS' => 'Search for all terms or use query as entered', |
| 97 | 'SEARCH_ANY_TERMS' => 'Search for any terms', |
| 98 | 'SEARCH_AUTHOR' => 'Search for author', |
| 99 | '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 | )); |