diff options
| author | Tristan Darricau <github@nicofuma.fr> | 2014-09-10 20:00:52 +0200 |
|---|---|---|
| committer | Tristan Darricau <github@nicofuma.fr> | 2014-09-10 20:00:52 +0200 |
| commit | c842583bbf0977a3fa44fdf07e42779d66773427 (patch) | |
| tree | 398db9c4f3e642a9d4a491ef128e697e3f5d966e /phpBB/includes/ucp | |
| parent | b2a28962bc614475d223c2353e327f2382be2f2b (diff) | |
| parent | d9f36ae7e1e6bf6aeb69f2491234ce0903a6543d (diff) | |
| download | forums-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.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'], |
