mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +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
@@ -93,8 +93,11 @@ $lang = array_merge($lang, array(
|
||||
|
||||
'LAST_ACTIVE' => 'Last active',
|
||||
'LESS_THAN' => 'Less than',
|
||||
'LIST_USER' => '1 user',
|
||||
'LIST_USERS' => '%d users',
|
||||
'LIST_USERS' => array(
|
||||
0 => '0 users',
|
||||
1 => '%d user',
|
||||
2 => '%d users',
|
||||
),
|
||||
'LOGIN_EXPLAIN_LEADERS' => 'The board requires you to be registered and logged in to view the team listing.',
|
||||
'LOGIN_EXPLAIN_MEMBERLIST' => 'The board requires you to be registered and logged in to access the memberlist.',
|
||||
'LOGIN_EXPLAIN_SEARCHUSER' => 'The board requires you to be registered and logged in to search users.',
|
||||
@@ -136,6 +139,7 @@ $lang = array_merge($lang, array(
|
||||
'USER_LAST_REMINDED' => array(
|
||||
0 => 'No reminder sent at this time',
|
||||
1 => '%1$d reminder sent<br />» %2$s',
|
||||
2 => '%1$d reminder sent<br />» %2$s',
|
||||
),
|
||||
'USER_ONLINE' => 'Online',
|
||||
'USER_PRESENCE' => 'Board presence',
|
||||
|
Reference in New Issue
Block a user