mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/10345] Make use of the plural function in some basic places
PHPBB3-10345
This commit is contained in:
committed by
Oleg Pudeyev
parent
0734dd3c42
commit
88ae40a4b1
@@ -41,9 +41,16 @@ $lang = array_merge($lang, array(
|
||||
|
||||
'DISPLAY_RESULTS' => 'Display results as',
|
||||
|
||||
'FOUND_SEARCH_MATCH' => 'Search found %d match',
|
||||
'FOUND_SEARCH_MATCHES' => 'Search found %d matches',
|
||||
'FOUND_MORE_SEARCH_MATCHES' => 'Search found more than %d matches',
|
||||
'FOUND_SEARCH_MATCHES' => array(
|
||||
0 => 'Search found %d matches',
|
||||
1 => 'Search found %d match',
|
||||
2 => 'Search found %d matches',
|
||||
),
|
||||
'FOUND_MORE_SEARCH_MATCHES' => array(
|
||||
0 => 'Search found more than %d matches',
|
||||
1 => 'Search found more than %d match',
|
||||
2 => 'Search found more than %d matches',
|
||||
),
|
||||
|
||||
'GLOBAL' => 'Global announcement',
|
||||
|
||||
@@ -100,5 +107,9 @@ $lang = array_merge($lang, array(
|
||||
'SORT_POST_SUBJECT' => 'Post subject',
|
||||
'SORT_TIME' => 'Post time',
|
||||
|
||||
'TOO_FEW_AUTHOR_CHARS' => 'You must specify at least %d characters of the authors name.',
|
||||
'TOO_FEW_AUTHOR_CHARS' => array(
|
||||
0 => 'You must specify at least %d characters of the authors name.',
|
||||
1 => 'You must specify at least %d character of the authors name.',
|
||||
2 => 'You must specify at least %d characters of the authors name.',
|
||||
),
|
||||
));
|
||||
|
Reference in New Issue
Block a user