diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-09-09 21:28:01 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-09-09 21:31:34 +0200 |
commit | d9f36ae7e1e6bf6aeb69f2491234ce0903a6543d (patch) | |
tree | 53c1738b41259c479c476e6afc10911e96cedb70 /phpBB/includes | |
parent | 12398d65fd52b1cec93d5aaccf933a9ba3eb93a0 (diff) | |
download | forums-d9f36ae7e1e6bf6aeb69f2491234ce0903a6543d.tar forums-d9f36ae7e1e6bf6aeb69f2491234ce0903a6543d.tar.gz forums-d9f36ae7e1e6bf6aeb69f2491234ce0903a6543d.tar.bz2 forums-d9f36ae7e1e6bf6aeb69f2491234ce0903a6543d.tar.xz forums-d9f36ae7e1e6bf6aeb69f2491234ce0903a6543d.zip |
[ticket/12976] Correctly use plurals for attachment count in UCP navigation
PHPBB3-12976
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/ucp/ucp_attachments.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/ucp/ucp_attachments.php b/phpBB/includes/ucp/ucp_attachments.php index aab45339c5..42724209aa 100644 --- a/phpBB/includes/ucp/ucp_attachments.php +++ b/phpBB/includes/ucp/ucp_attachments.php @@ -182,6 +182,7 @@ class ucp_attachments $template->assign_vars(array( 'TOTAL_ATTACHMENTS' => $num_attachments, + 'NUM_ATTACHMENTS' => $user->lang('NUM_ATTACHMENTS', $num_attachments), 'L_TITLE' => $user->lang['UCP_ATTACHMENTS'], |