aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-09-10 20:00:52 +0200
committerTristan Darricau <github@nicofuma.fr>2014-09-10 20:00:52 +0200
commitc842583bbf0977a3fa44fdf07e42779d66773427 (patch)
tree398db9c4f3e642a9d4a491ef128e697e3f5d966e /phpBB/includes/ucp
parentb2a28962bc614475d223c2353e327f2382be2f2b (diff)
parentd9f36ae7e1e6bf6aeb69f2491234ce0903a6543d (diff)
downloadforums-c842583bbf0977a3fa44fdf07e42779d66773427.tar
forums-c842583bbf0977a3fa44fdf07e42779d66773427.tar.gz
forums-c842583bbf0977a3fa44fdf07e42779d66773427.tar.bz2
forums-c842583bbf0977a3fa44fdf07e42779d66773427.tar.xz
forums-c842583bbf0977a3fa44fdf07e42779d66773427.zip
Merge pull request #2936 from nickvergessen/ticket/12976
[ticket/12976] Correctly use plurals for attachment count in UCP navigation * nickvergessen/ticket/12976: [ticket/12976] Correctly use plurals for attachment count in UCP navigation
Diffstat (limited to 'phpBB/includes/ucp')
-rw-r--r--phpBB/includes/ucp/ucp_attachments.php1
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'],