diff options
Diffstat (limited to 'phpBB/language/en/common.php')
-rw-r--r-- | phpBB/language/en/common.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php index c4628f3e1b..ae711d4c29 100644 --- a/phpBB/language/en/common.php +++ b/phpBB/language/en/common.php @@ -394,6 +394,13 @@ $lang = array_merge($lang, array( 'NO_USERS' => 'The requested users do not exist.', 'NO_USER_SPECIFIED' => 'No username was specified.', + // Nullar/Singular/Plural language entry. The key numbers define the number range in which a certain grammatical expression is valid. + 'NUM_POSTS_IN_QUEUE' => array( + 0 => 'No posts in queue', // 0 + 1 => '1 post in queue', // 1 + 2 => '%d posts in queue', // 2+ + ), + 'OCCUPATION' => 'Occupation', 'OFFLINE' => 'Offline', 'ONLINE' => 'Online', |