diff options
author | Cesar G <prototech91@gmail.com> | 2014-01-16 11:48:40 -0800 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-01-16 11:48:40 -0800 |
commit | b3a25c52e57b31259e71984f320611fc5d6513bb (patch) | |
tree | fb552c433a8d64e4554bc840a496e91d3a194435 /phpBB/language | |
parent | 670a9a1aea49ac4b39966025be9fd28062567fa2 (diff) | |
download | forums-b3a25c52e57b31259e71984f320611fc5d6513bb.tar forums-b3a25c52e57b31259e71984f320611fc5d6513bb.tar.gz forums-b3a25c52e57b31259e71984f320611fc5d6513bb.tar.bz2 forums-b3a25c52e57b31259e71984f320611fc5d6513bb.tar.xz forums-b3a25c52e57b31259e71984f320611fc5d6513bb.zip |
[ticket/12096] Use plurals for MAX_NUM_SEARCH_KEYWORDS_REFINE.
PHPBB3-12096
Diffstat (limited to 'phpBB/language')
-rw-r--r-- | phpBB/language/en/search.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/language/en/search.php b/phpBB/language/en/search.php index 71cbec4b41..f65022fbcb 100644 --- a/phpBB/language/en/search.php +++ b/phpBB/language/en/search.php @@ -60,7 +60,10 @@ $lang = array_merge($lang, array( 'LOGIN_EXPLAIN_UNREADSEARCH'=> 'The board requires you to be registered and logged in to view your unread posts.', 'LOGIN_EXPLAIN_NEWPOSTS' => 'The board requires you to be registered and logged in to view new posts since your last visit.', - 'MAX_NUM_SEARCH_KEYWORDS_REFINE' => 'You specified too many words to search for. Please do not enter more than %1$d words.', + 'MAX_NUM_SEARCH_KEYWORDS_REFINE' => array( + 1 => 'You specified too many words to search for. Please do not enter more than %1$d word.', + 2 => 'You specified too many words to search for. Please do not enter more than %1$d words.', + ), '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.', 'NO_RECENT_SEARCHES' => 'No searches have been carried out recently.', |